Mercurial > code > home > repos > pi_mqtt
diff tsconfig.json @ 1:f92cec01b59e
merge with template project
author | drewp@bigasterisk.com |
---|---|
date | Fri, 01 Sep 2023 23:57:45 -0700 |
parents | 3989f073ed9e |
children |
line wrap: on
line diff
--- a/tsconfig.json Thu Aug 24 16:28:05 2023 -0700 +++ b/tsconfig.json Fri Sep 01 23:57:45 2023 -0700 @@ -1,28 +1,32 @@ { "compilerOptions": { - "strict": true, + "allowSyntheticDefaultImports": true, + "alwaysStrict": true, + "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, + "strict": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, - "alwaysStrict": true, - "types": [], - + "allowJs": true, + "declaration": true, + "downlevelIteration": true, + "esModuleInterop": true, + "experimentalDecorators": true, "module": "ES6", - "target": "ES6", "moduleResolution": "node", "sourceMap": true, - "declaration": true, - "experimentalDecorators": true, - "allowJs": true, - "esModuleInterop": true, + "target": "ES6", "traceResolution": true, + "useDefineForClassFields": false, + "baseUrl": ".", - "lib": ["es6", "dom", "ES2019.Object"] + "lib": ["es6", "dom", "ES2019.Object"], + "types": [] }, "include": ["src/**/*.ts"] }