|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
| 3 | + "allowSyntheticDefaultImports": true, |
| 4 | + "alwaysStrict": true, |
| 5 | + "declaration": true, |
| 6 | + "declarationMap": true, |
| 7 | + "esModuleInterop": true, |
| 8 | + "exactOptionalPropertyTypes": true, |
| 9 | + "forceConsistentCasingInFileNames": true, |
3 | 10 | "module": "commonjs", |
4 | | - "target": "ES2022", |
5 | 11 | "lib": ["ES2022", "DOM"], |
6 | 12 | "moduleResolution": "node", |
7 | | - "outDir": "out", |
8 | | - "sourceMap": true, |
9 | | - "declaration": true, |
10 | | - "declarationMap": true, |
11 | | - "strict": true, |
| 13 | + "noEmitOnError": true, |
| 14 | + "noFallthroughCasesInSwitch": true, |
12 | 15 | "noImplicitAny": true, |
13 | | - "noImplicitReturns": true, |
14 | 16 | "noImplicitThis": true, |
15 | 17 | "noImplicitOverride": true, |
16 | | - "strictNullChecks": true, |
17 | | - "strictFunctionTypes": true, |
18 | | - "strictBindCallApply": true, |
19 | | - "strictPropertyInitialization": true, |
20 | | - "alwaysStrict": true, |
| 18 | + "noImplicitReturns": true, |
| 19 | + "noPropertyAccessFromIndexSignature": true, |
| 20 | + "noUncheckedIndexedAccess": true, |
21 | 21 | "noUnusedLocals": true, |
22 | 22 | "noUnusedParameters": true, |
23 | | - "exactOptionalPropertyTypes": true, |
24 | | - "noFallthroughCasesInSwitch": true, |
25 | | - "noUncheckedIndexedAccess": true, |
26 | | - "noPropertyAccessFromIndexSignature": false, |
27 | | - "esModuleInterop": true, |
28 | | - "allowSyntheticDefaultImports": true, |
| 23 | + "outDir": "out", |
29 | 24 | "resolveJsonModule": true, |
30 | | - "forceConsistentCasingInFileNames": true, |
31 | 25 | "skipLibCheck": true, |
32 | 26 | "incremental": true, |
| 27 | + "sourceMap": true, |
| 28 | + "strict": true, |
| 29 | + "strictBindCallApply": true, |
| 30 | + "strictFunctionTypes": true, |
| 31 | + "strictNullChecks": true, |
| 32 | + "strictPropertyInitialization": true, |
| 33 | + "target": "ES2022", |
33 | 34 | "tsBuildInfoFile": ".tsbuildinfo" |
34 | 35 | }, |
35 | 36 | "include": ["extension.ts", "**/*.ts"], |
|
0 commit comments