Mercurial > code > home > repos > streamed-graph
annotate tsconfig.json @ 122:2e8fa3fec0c8
support joining subjects into wider rows
author | drewp@bigasterisk.com |
---|---|
date | Sun, 20 Mar 2022 14:12:03 -0700 |
parents | 76c1a29a328f |
children | 73a70d00fb74 |
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", |
34 | 10 "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
|
11 "declaration": true, |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
12 "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
|
13 "experimentalDecorators": true, |
101
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
14 "forceConsistentCasingInFileNames": true, |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
15 "rootDir": "./src", |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
16 "outDir": "./types", |
76c1a29a328f
repo now demos itself, which runs better than using the nested demo/ project
drewp@bigasterisk.com
parents:
86
diff
changeset
|
17 "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
|
18 }, |
86 | 19 "include": ["src/**/*.ts"], |
20 "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
|
21 } |