comparison tsconfig.json @ 30:1fa90a903621

upgrade many deps
author drewp@bigasterisk.com
date Mon, 26 Aug 2024 22:33:02 -0700
parents b73941c4dc0a
children
comparison
equal deleted inserted replaced
29:32916c1803d2 30:1fa90a903621
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,
24 // "allowSyntheticDefaultImports": true, 25 "useDefineForClassFields": false,
25 // "rootDir": ".", 26
26 // "outDir": "./build",
27 "baseUrl": ".", 27 "baseUrl": ".",
28 // "emitDecoratorMetadata": true, 28 "lib": ["es6", "dom", "ES2019.Object"],
29 "lib": [ "es6", "dom", "ES2019.Object" ], 29 "types": []
30 }, 30 },
31 "include": ["./src"] 31 "include": ["src/**/*.ts"]
32 // "exclude": ["src/**/*.test.ts"]
33 } 32 }