Mercurial > code > home > repos > streamed-graph
annotate tsconfig.json @ 86:6ec759f9009f
build fixes, dead code, format
author | drewp@bigasterisk.com |
---|---|
date | Thu, 25 Nov 2021 18:15:08 -0800 |
parents | 7c93e17b1111 |
children | 76c1a29a328f |
rev | line source |
---|---|
0 | 1 { |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
2 "compilerOptions": { |
35 | 3 "strict": true, |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
4 "noFallthroughCasesInSwitch": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
5 "noImplicitAny": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
6 "noImplicitReturns": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
7 "noImplicitThis": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
8 "strictFunctionTypes": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
9 "strictNullChecks": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
10 "strictPropertyInitialization": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
11 "alwaysStrict": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
12 |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
13 "types": ["jest"], |
47 | 14 |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
15 "module": "ES6", |
47 | 16 "target": "ES6", |
34 | 17 "moduleResolution": "node", |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
18 "sourceMap": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
19 "declaration": true, |
86 | 20 "declarationDir": ".", // relative to outDir |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
21 "experimentalDecorators": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
22 "allowJs": true, |
35 | 23 "esModuleInterop": true, |
80
7c93e17b1111
more fixes, more original code uncommented
drewp@bigasterisk.com
parents:
48
diff
changeset
|
24 // "traceResolution": true, |
35 | 25 // "allowSyntheticDefaultImports": true, |
34 | 26 // "rootDir": ".", |
86 | 27 "outDir": "./build", |
48 | 28 "baseUrl": "." |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
29 // "emitDecoratorMetadata": true, |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
30 // "lib": [ "es6", "dom" ], |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
31 }, |
86 | 32 "include": ["src/**/*.ts"], |
33 "exclude": ["src/**/*.test.ts"] | |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
34 } |