Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
run: |
grunt
webpack
tsc --stripInternal
tsc --project tsconfig.docs.json --stripInternal

- name: Generate all documentation
run: yarn doc:all
run: yarn doc

- name: Prepare deployment structure
run: |
Expand Down
18 changes: 18 additions & 0 deletions tsconfig.docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"types": []
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"./src/**/*.spec.ts",
"./src/**/*.test.ts",
"./spec/**/*",
"./angular/**/*",
"./demo/**/*",
"./node_modules/**/*"
]
}
1 change: 1 addition & 0 deletions typedoc.html.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/gridstack.ts"],
"tsconfig": "tsconfig.docs.json",
"excludeExternals": false,
"out": "doc/html",
"exclude": [
Expand Down
1 change: 1 addition & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["src/gridstack.ts"],
"tsconfig": "tsconfig.docs.json",
"excludeExternals": false,
"out": "doc",
"plugin": ["typedoc-plugin-markdown"],
Expand Down