Mercurial > code > home > repos > streamed-graph
annotate tsconfig.json @ 15:7ca4ff2088c3
managed to use a newer ts or something, so this includes a bunch of type fixes too
author | drewp@bigasterisk.com |
---|---|
date | Sun, 08 Dec 2019 23:32:12 -0800 |
parents | 091a03abd6cb |
children | 4bf74032e2e8 |
rev | line source |
---|---|
0 | 1 { |
2 "compilerOptions": { | |
7 | 3 "allowSyntheticDefaultImports": true, |
4 "baseUrl": "./", | |
15
7ca4ff2088c3
managed to use a newer ts or something, so this includes a bunch of type fixes too
drewp@bigasterisk.com
parents:
12
diff
changeset
|
5 "declaration": false, |
7 | 6 "emitDecoratorMetadata": true, |
0 | 7 "esModuleInterop": true, |
7 | 8 "experimentalDecorators": true, |
9 "lib": ["es6", "dom"], | |
10 "module": "commonjs", | |
11 "moduleResolution": "node", | |
12 "resolveJsonModule": true, | |
13 "rootDirs": ["node_modules"], | |
14 "target": "es6", | |
15
7ca4ff2088c3
managed to use a newer ts or something, so this includes a bunch of type fixes too
drewp@bigasterisk.com
parents:
12
diff
changeset
|
15 "noImplicitReturns": true, |
7ca4ff2088c3
managed to use a newer ts or something, so this includes a bunch of type fixes too
drewp@bigasterisk.com
parents:
12
diff
changeset
|
16 "strictNullChecks": true, |
7 | 17 // "importHelpers": true, |
18 // "removeComments": true, | |
19 // "rootDir": ".", | |
15
7ca4ff2088c3
managed to use a newer ts or something, so this includes a bunch of type fixes too
drewp@bigasterisk.com
parents:
12
diff
changeset
|
20 "sourceMap": true |
7 | 21 // "types": ["node"], |
22 // // "outDir": "../../dist/server-root", | |
23 } | |
0 | 24 } |