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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
drewp@localhost
parents:
diff changeset
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
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
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
7d17a02b5ae0 reformats and minor edits
drewp@bigasterisk.com
parents: 35
diff changeset
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
7d17a02b5ae0 reformats and minor edits
drewp@bigasterisk.com
parents: 35
diff changeset
16 "target": "ES6",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
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
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
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
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
23 "esModuleInterop": true,
80
7c93e17b1111 more fixes, more original code uncommented
drewp@bigasterisk.com
parents: 48
diff changeset
24 // "traceResolution": true,
35
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
25 // "allowSyntheticDefaultImports": true,
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
26 // "rootDir": ".",
86
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
27 "outDir": "./build",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 47
diff changeset
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
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
32 "include": ["src/**/*.ts"],
6ec759f9009f build fixes, dead code, format
drewp@bigasterisk.com
parents: 80
diff changeset
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 }