Mercurial > code > home > repos > homeauto
annotate service/wifi/tsconfig.json @ 683:50d66febeeb0
build cleanup and reformats
Ignore-this: dcb2bb4a86eee1a298c644e0f81a7d0d
author | drewp@bigasterisk.com |
---|---|
date | Mon, 06 Jan 2020 23:47:30 -0800 |
parents | 9ae34280218b |
children | b267511ec4fc |
rev | line source |
---|---|
662
540dd68af9f2
start ts config files, but this doesn't share the streamed-graph code properly yet
drewp@bigasterisk.com
parents:
diff
changeset
|
1 { |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
2 "compilerOptions": { |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
3 "strict": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
4 "noFallthroughCasesInSwitch": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
5 "noImplicitAny": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
6 "noImplicitReturns": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
7 "noImplicitThis": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
8 "strictFunctionTypes": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
9 "strictNullChecks": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
10 "strictPropertyInitialization": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
11 "alwaysStrict": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
12 |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
13 "types": ["jest"], |
683 | 14 |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
15 "module": "ES6", |
683 | 16 "target": "ES6", |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
17 "moduleResolution": "node", |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
18 "sourceMap": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
19 "declaration": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
20 "experimentalDecorators": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
21 "allowJs": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
22 "esModuleInterop": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
23 // "allowSyntheticDefaultImports": true, |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
24 // "rootDir": ".", |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
25 // "outDir": "./build", |
683 | 26 "baseUrl": "." |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
27 // "emitDecoratorMetadata": true, |
683 | 28 // "lib": [ "dom" ], |
673
f2215949c0c9
build adjustments. now seems to read streamedgraph correctly.
drewp@bigasterisk.com
parents:
672
diff
changeset
|
29 |
675
9ae34280218b
kind of running with lit-element and polymer together. lots of data missing from table still
drewp@bigasterisk.com
parents:
673
diff
changeset
|
30 // "diagnostics": true, |
9ae34280218b
kind of running with lit-element and polymer together. lots of data missing from table still
drewp@bigasterisk.com
parents:
673
diff
changeset
|
31 // "traceResolution": true |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
32 }, |
683 | 33 "include": ["src/**/*.ts"] |
672
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
34 // "exclude": ["src/**/*.test.ts"] |
f424809cba8d
npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet.
drewp@bigasterisk.com
parents:
662
diff
changeset
|
35 } |