annotate tsconfig.json @ 0:5a77696c6dab

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