Mercurial > code > home > repos > pi_mqtt
comparison tsconfig.json @ 0:3989f073ed9e
start. hardcoded motion light in garage
author | drewp@bigasterisk.com |
---|---|
date | Thu, 24 Aug 2023 16:28:05 -0700 |
parents | |
children | f92cec01b59e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:3989f073ed9e |
---|---|
1 { | |
2 "compilerOptions": { | |
3 "strict": true, | |
4 "noFallthroughCasesInSwitch": true, | |
5 "noImplicitAny": true, | |
6 "noImplicitReturns": true, | |
7 "noImplicitThis": true, | |
8 "strictFunctionTypes": true, | |
9 "strictNullChecks": true, | |
10 "strictPropertyInitialization": true, | |
11 "alwaysStrict": true, | |
12 | |
13 "types": [], | |
14 | |
15 "module": "ES6", | |
16 "target": "ES6", | |
17 "moduleResolution": "node", | |
18 "sourceMap": true, | |
19 "declaration": true, | |
20 "experimentalDecorators": true, | |
21 "allowJs": true, | |
22 "esModuleInterop": true, | |
23 "traceResolution": true, | |
24 "baseUrl": ".", | |
25 "lib": ["es6", "dom", "ES2019.Object"] | |
26 }, | |
27 "include": ["src/**/*.ts"] | |
28 } |