comparison service/wifi/tsconfig.json @ 1473:4bbc68603168

npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet. Ignore-this: 2b08220ad8d275f4dd242c3aa1a8647a darcs-hash:713c0960d19658e35685d64dc855ca63e1fde660
author drewp <drewp@bigasterisk.com>
date Sun, 29 Dec 2019 19:41:48 -0800
parents 32d134dbfb1e
children f2215949c0c9
comparison
equal deleted inserted replaced
1472:dda4c0bcca65 1473:4bbc68603168
1 { 1 {
2 "compilerOptions": { 2 "compilerOptions": {
3 "alwaysStrict": true, 3 "strict": true,
4 "declaration": true, 4 "noFallthroughCasesInSwitch": true,
5 "experimentalDecorators": true, 5 "noImplicitAny": true,
6 "lib": [ 6 "noImplicitReturns": true,
7 "es2017", 7 "noImplicitThis": true,
8 "dom" 8 "strictFunctionTypes": true,
9 ], 9 "strictNullChecks": true,
10 "module": "commonjs", 10 "strictPropertyInitialization": true,
11 "noFallthroughCasesInSwitch": true, 11 "alwaysStrict": true,
12 "noImplicitAny": true, 12
13 "noImplicitReturns": true, 13 "types": ["jest"],
14 "noImplicitThis": true, 14
15 "declarationDir": "./build", 15 "module": "ES6",
16 "outDir": "./build/js", 16 "target": "ES6",
17 "strict": true, 17 "moduleResolution": "node",
18 "strictFunctionTypes": true, 18 "sourceMap": true,
19 "strictNullChecks": true, 19 "declaration": true,
20 "strictPropertyInitialization": true, 20 "experimentalDecorators": true,
21 "target": "es6", 21 "allowJs": true,
22 "esModuleInterop": true, 22 "esModuleInterop": true,
23 "types": [ 23 // "allowSyntheticDefaultImports": true,
24 "jest" 24 // "rootDir": ".",
25 ], 25 // "outDir": "./build",
26 "sourceMap": true, 26 "baseUrl": ".",
27 "baseUrl": "src", 27 // "emitDecoratorMetadata": true,
28 "paths": { 28 // "lib": [ "es6", "dom" ],
29 "streamed-graph":["/tmp/sg/foo"] 29 "paths": {
30 } 30 "streamed-graph": ["node_modules/streamed-graph"]
31 } 31 },
32 "diagnostics": true,
33 "traceResolution": true
34
35 },
36 "include": ["src/**/*.ts"],
37 // "exclude": ["src/**/*.test.ts"]
32 } 38 }