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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
drewp@localhost
parents:
diff changeset
1 {
drewp@localhost
parents:
diff changeset
2 "compilerOptions": {
7
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
3 "allowSyntheticDefaultImports": true,
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
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
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
6 "emitDecoratorMetadata": true,
0
drewp@localhost
parents:
diff changeset
7 "esModuleInterop": true,
7
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
8 "experimentalDecorators": true,
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
9 "lib": ["es6", "dom"],
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
10 "module": "commonjs",
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
11 "moduleResolution": "node",
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
12 "resolveJsonModule": true,
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
13 "rootDirs": ["node_modules"],
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
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
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
17 // "importHelpers": true,
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
18 // "removeComments": true,
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
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
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
21 // "types": ["node"],
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
22 // // "outDir": "../../dist/server-root",
daf08d794660 fix configs so relative imports work
drewp@bigasterisk.com
parents: 4
diff changeset
23 }
0
drewp@localhost
parents:
diff changeset
24 }