Mercurial > code > home > repos > streamed-graph
annotate tsconfig.json @ 130:73a70d00fb74
dep upgrades; working on build+release setup
author | drewp@bigasterisk.com |
---|---|
date | Sat, 06 May 2023 13:11:19 -0700 |
parents | 76c1a29a328f |
children |
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 "noImplicitReturns": true, |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
6 "downlevelIteration": true, |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
7 "allowSyntheticDefaultImports": true, |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
8 "useDefineForClassFields": false, |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
9 "module": "esnext", |
130
73a70d00fb74
dep upgrades; working on build+release setup
drewp@bigasterisk.com
parents:
101
diff
changeset
|
10 "target": "ES6", |
34 | 11 "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
|
12 "declaration": true, |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
13 "emitDeclarationOnly": 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
|
14 "experimentalDecorators": true, |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
15 "forceConsistentCasingInFileNames": true, |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
16 "rootDir": "./src", |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
17 "outDir": "./types", |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
18 "lib": ["es2017", "dom", "dom.iterable"] |
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
|
19 }, |
86 | 20 "include": ["src/**/*.ts"], |
21 "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
|
22 } |