|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
| 3 | + // Type Checking |
| 4 | + "allowUnreachableCode": false, |
| 5 | + "allowUnusedLabels": false, |
| 6 | + "exactOptionalPropertyTypes": true, |
| 7 | + "noFallthroughCasesInSwitch": true, |
| 8 | + "noImplicitAny": true, |
| 9 | + "noImplicitOverride": true, |
| 10 | + "noImplicitReturns": true, |
| 11 | + "noImplicitThis": true, |
| 12 | + "noPropertyAccessFromIndexSignature": true, |
| 13 | + "noUncheckedIndexedAccess": true, |
| 14 | + "noUnusedLocals": true, |
| 15 | + "noUnusedParameters": true, |
3 | 16 | "strict": true, |
4 | | - "module": "es2020", |
5 | | - |
6 | | - "moduleResolution": "node", |
7 | | - "allowSyntheticDefaultImports": true, |
8 | | - "esModuleInterop": true |
| 17 | + "strictBindCallApply": true, |
| 18 | + "strictFunctionTypes": true, |
| 19 | + "strictNullChecks": true, |
| 20 | + "strictPropertyInitialization": true, |
| 21 | + "useUnknownInCatchVariables": true, |
| 22 | + // Modules |
| 23 | + "module": "ES2020", |
| 24 | + "allowArbitraryExtensions": true, |
| 25 | + "moduleResolution": "bundler", |
| 26 | + "resolveJsonModule": true, |
| 27 | + // Interop Constraints |
| 28 | + "esModuleInterop": true, |
| 29 | + "forceConsistentCasingInFileNames": true, |
| 30 | + "isolatedModules": true, |
| 31 | + // Emit |
| 32 | + "noEmit": true, |
| 33 | + // JavaScript Support |
| 34 | + "allowJs": true, |
| 35 | + "checkJs": true |
| 36 | + }, |
| 37 | + "typeAcquisition": { |
| 38 | + "enable": true |
9 | 39 | }, |
10 | 40 | "types": ["node"], |
11 | 41 | "exclude": ["node_modules", "test", "examples", "dist", "coverage"] |
|
0 commit comments