Mercurial > code > home > repos > homeauto
annotate service/wifi/tsconfig.json @ 1754:92999dfbf321 default tip
add shelly support
author | drewp@bigasterisk.com |
---|---|
date | Tue, 04 Jun 2024 13:03:43 -0700 |
parents | b267511ec4fc |
children |
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", |
744
b267511ec4fc
fixes to TS and page build. remove some unused attempts at binding to <streamed-graph>
drewp@bigasterisk.com
parents:
683
diff
changeset
|
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, |
744
b267511ec4fc
fixes to TS and page build. remove some unused attempts at binding to <streamed-graph>
drewp@bigasterisk.com
parents:
683
diff
changeset
|
28 "lib": [ "DOM","ES6","DOM.Iterable","ScriptHost", "ES2017.object" ], |
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 } |