File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 "build" : " npm run clean && tsc --build tsconfig.json --inlineSourceMap" ,
3636 "dev" : " npm run build -- --watch" ,
3737 "build-dist" : " npm run build -- --inlineSourceMap --listEmittedFiles" ,
38- "docs" : " npx typedoc --plugin typedoc-plugin-extras --out docs-build --cacheBust src/index.ts " ,
39- "docs-dist" : " npm run docs -- --gitRevision dev " ,
38+ "docs" : " npx typedoc" ,
39+ "docs-dist" : " npm run docs -- --gitRevision dist " ,
4040 "setup-examples" : " cd examples/package && npm run setup-dev && cd ../project && npm run setup-dev" ,
4141 "build-examples" : " cd examples/package && npm run build && cd ../project && npm run build"
4242 },
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://json.schemastore.org/tsconfig" ,
3+ "extends" : " ./tsconfig.json" ,
4+ "include" : [
5+ " types/**/*.d.ts"
6+ ],
7+ "compilerOptions" : {
8+ "noEmit" : true
9+ }
10+ }
Original file line number Diff line number Diff line change 11{
2+ "entryPoints" : [
3+ " types/index.d.ts"
4+ ],
5+ "tsconfig" : " tsconfig.docs.json" ,
6+ "emit" : " docs" ,
7+ "out" : " ./docs-build" ,
8+ "cacheBust" : true ,
9+ "plugin" : [
10+ " typedoc-plugin-extras"
11+ ],
212 "favicon" : " https://nxtlvlsoftware.github.io/alpine-typescript/favicon.ico" ,
313 "footerTypedocVersion" : true ,
414 "footerDate" : true ,
You can’t perform that action at this time.
0 commit comments