File tree Expand file tree Collapse file tree 4 files changed +22
-2
lines changed
Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ jobs:
3939 run : |
4040 grunt
4141 webpack
42- tsc --stripInternal
42+ tsc --project tsconfig.docs.json -- stripInternal
4343
4444 - name : Generate all documentation
45- run : yarn doc:all
45+ run : yarn doc
4646
4747 - name : Prepare deployment structure
4848 run : |
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./tsconfig.json" ,
3+ "compilerOptions" : {
4+ "skipLibCheck" : true ,
5+ "types" : []
6+ },
7+ "include" : [
8+ " ./src/**/*.ts"
9+ ],
10+ "exclude" : [
11+ " ./src/**/*.spec.ts" ,
12+ " ./src/**/*.test.ts" ,
13+ " ./spec/**/*" ,
14+ " ./angular/**/*" ,
15+ " ./demo/**/*" ,
16+ " ./node_modules/**/*"
17+ ]
18+ }
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://typedoc.org/schema.json" ,
33 "entryPoints" : [" src/gridstack.ts" ],
4+ "tsconfig" : " tsconfig.docs.json" ,
45 "excludeExternals" : false ,
56 "out" : " doc/html" ,
67 "exclude" : [
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://typedoc.org/schema.json" ,
33 "entryPoints" : [" src/gridstack.ts" ],
4+ "tsconfig" : " tsconfig.docs.json" ,
45 "excludeExternals" : false ,
56 "out" : " doc" ,
67 "plugin" : [" typedoc-plugin-markdown" ],
You can’t perform that action at this time.
0 commit comments