comparison tsconfig.json @ 0:5a77696c6dab

start
author drewp@bigasterisk.com
date Sun, 28 Jan 2024 15:32:18 -0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5a77696c6dab
1 {
2 "compilerOptions": {
3 "allowSyntheticDefaultImports": true,
4 "alwaysStrict": true,
5 "forceConsistentCasingInFileNames": true,
6 "noFallthroughCasesInSwitch": true,
7 "noImplicitAny": true,
8 "noImplicitReturns": true,
9 "noImplicitThis": true,
10 "strict": true,
11 "strictFunctionTypes": true,
12 "strictNullChecks": true,
13 "strictPropertyInitialization": true,
14
15 "allowJs": true,
16 "declaration": true,
17 "downlevelIteration": true,
18 "esModuleInterop": true,
19 "experimentalDecorators": true,
20 "module": "ES6",
21 "moduleResolution": "node",
22 "sourceMap": true,
23 "target": "ES6",
24 "traceResolution": true,
25 "useDefineForClassFields": false,
26
27 "baseUrl": ".",
28 "lib": ["es6", "dom", "ES2019.Object"],
29 "types": []
30 },
31 "include": ["src/**/*.ts"]
32 }