Mercurial > code > home > repos > pi_mqtt
comparison tsconfig.json @ 1:f92cec01b59e
merge with template project
author | drewp@bigasterisk.com |
---|---|
date | Fri, 01 Sep 2023 23:57:45 -0700 |
parents | 3989f073ed9e |
children |
comparison
equal
deleted
inserted
replaced
0:3989f073ed9e | 1:f92cec01b59e |
---|---|
1 { | 1 { |
2 "compilerOptions": { | 2 "compilerOptions": { |
3 "strict": true, | 3 "allowSyntheticDefaultImports": true, |
4 "alwaysStrict": true, | |
5 "forceConsistentCasingInFileNames": true, | |
4 "noFallthroughCasesInSwitch": true, | 6 "noFallthroughCasesInSwitch": true, |
5 "noImplicitAny": true, | 7 "noImplicitAny": true, |
6 "noImplicitReturns": true, | 8 "noImplicitReturns": true, |
7 "noImplicitThis": true, | 9 "noImplicitThis": true, |
10 "strict": true, | |
8 "strictFunctionTypes": true, | 11 "strictFunctionTypes": true, |
9 "strictNullChecks": true, | 12 "strictNullChecks": true, |
10 "strictPropertyInitialization": true, | 13 "strictPropertyInitialization": true, |
11 "alwaysStrict": true, | |
12 | 14 |
13 "types": [], | 15 "allowJs": true, |
14 | 16 "declaration": true, |
17 "downlevelIteration": true, | |
18 "esModuleInterop": true, | |
19 "experimentalDecorators": true, | |
15 "module": "ES6", | 20 "module": "ES6", |
16 "target": "ES6", | |
17 "moduleResolution": "node", | 21 "moduleResolution": "node", |
18 "sourceMap": true, | 22 "sourceMap": true, |
19 "declaration": true, | 23 "target": "ES6", |
20 "experimentalDecorators": true, | |
21 "allowJs": true, | |
22 "esModuleInterop": true, | |
23 "traceResolution": true, | 24 "traceResolution": true, |
25 "useDefineForClassFields": false, | |
26 | |
24 "baseUrl": ".", | 27 "baseUrl": ".", |
25 "lib": ["es6", "dom", "ES2019.Object"] | 28 "lib": ["es6", "dom", "ES2019.Object"], |
29 "types": [] | |
26 }, | 30 }, |
27 "include": ["src/**/*.ts"] | 31 "include": ["src/**/*.ts"] |
28 } | 32 } |