comparison service/wifi/tsconfig.json @ 662:540dd68af9f2

start ts config files, but this doesn't share the streamed-graph code properly yet Ignore-this: ef4e6fdf3369939b062caa5fdc2788e9
author drewp@bigasterisk.com
date Tue, 17 Dec 2019 23:16:53 -0800
parents
children f424809cba8d
comparison
equal deleted inserted replaced
661:c420c96972c1 662:540dd68af9f2
1 {
2 "compilerOptions": {
3 "alwaysStrict": true,
4 "declaration": true,
5 "experimentalDecorators": true,
6 "lib": [
7 "es2017",
8 "dom"
9 ],
10 "module": "commonjs",
11 "noFallthroughCasesInSwitch": true,
12 "noImplicitAny": true,
13 "noImplicitReturns": true,
14 "noImplicitThis": true,
15 "declarationDir": "./build",
16 "outDir": "./build/js",
17 "strict": true,
18 "strictFunctionTypes": true,
19 "strictNullChecks": true,
20 "strictPropertyInitialization": true,
21 "target": "es6",
22 "esModuleInterop": true,
23 "types": [
24 "jest"
25 ],
26 "sourceMap": true,
27 "baseUrl": "src",
28 "paths": {
29 "streamed-graph":["/tmp/sg/foo"]
30 }
31 }
32 }