annotate tsconfig.json @ 4:a668a774b162

back up, slowly turn on code again until ts breaks
author drewp@bigasterisk.com
date Wed, 04 Dec 2019 00:23:28 -0800
parents a7ba8627a7b6
children daf08d794660
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": {
drewp@localhost
parents:
diff changeset
3 "module": "commonjs",
drewp@localhost
parents:
diff changeset
4 "experimentalDecorators": true,
drewp@localhost
parents:
diff changeset
5 "target": "es6",
drewp@localhost
parents:
diff changeset
6 "rootDirs": [
drewp@localhost
parents:
diff changeset
7 "node_modules",
4
a668a774b162 back up, slowly turn on code again until ts breaks
drewp@bigasterisk.com
parents: 3
diff changeset
8 // "src"
0
drewp@localhost
parents:
diff changeset
9 ],
drewp@localhost
parents:
diff changeset
10 "esModuleInterop": true,
drewp@localhost
parents:
diff changeset
11 "allowSyntheticDefaultImports": true
drewp@localhost
parents:
diff changeset
12 },
drewp@localhost
parents:
diff changeset
13 "files": [
drewp@localhost
parents:
diff changeset
14 "./src/streamed-graph.ts",
4
a668a774b162 back up, slowly turn on code again until ts breaks
drewp@bigasterisk.com
parents: 3
diff changeset
15 // "./src/streamed_graph_client.ts"
0
drewp@localhost
parents:
diff changeset
16 ]
drewp@localhost
parents:
diff changeset
17 }