1 | {
|
2 | "root": true,
|
3 | "compilerOptions": {
|
4 | "allowJs": false,
|
5 | "target": "es2020",
|
6 | "declaration": true,
|
7 | "module": "commonjs",
|
8 | "moduleResolution": "node",
|
9 | "forceConsistentCasingInFileNames": true,
|
10 | "strictPropertyInitialization": false, // TODO
|
11 | "strict": true,
|
12 | "strictNullChecks": true,
|
13 | "noImplicitAny": true,
|
14 | "noImplicitReturns": true,
|
15 | "noImplicitThis": true,
|
16 | // eslint already warns about:
|
17 | "noUnusedLocals": false,
|
18 | "noUnusedParameters": false,
|
19 | "incremental": true,
|
20 | "sourceMap": true,
|
21 | "esModuleInterop": true,
|
22 | "lib": [
|
23 | "ES2020",
|
24 | // only used in tests
|
25 | "ES2021.WeakRef"
|
26 | ]
|
27 | },
|
28 | "compileOnSave": true
|
29 | }
|