|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
3 | | - "outDir": "dist", |
4 | | - "module": "esnext", |
5 | | - "lib": ["dom", "esnext"], |
6 | | - "moduleResolution": "node", |
7 | | - "jsx": "react", |
8 | | - "sourceMap": true, |
9 | | - "declaration": true, |
10 | | - "esModuleInterop": true, |
| 3 | + /* Type Checking */ |
| 4 | + "strict": true, |
| 5 | + "strictBindCallApply": true, |
| 6 | + "noFallthroughCasesInSwitch": true, |
| 7 | + "noImplicitOverride": true, |
11 | 8 | "noImplicitReturns": true, |
12 | | - "noImplicitThis": true, |
13 | | - "noImplicitAny": true, |
14 | | - "strictNullChecks": true, |
15 | | - "suppressImplicitAnyIndexErrors": true, |
16 | 9 | "noUnusedLocals": true, |
17 | 10 | "noUnusedParameters": true, |
| 11 | + /* Modules */ |
| 12 | + "baseUrl": ".", |
| 13 | + "module": "esnext", |
| 14 | + "moduleResolution": "node", |
| 15 | + "resolveJsonModule": true, |
| 16 | + /* Emit */ |
| 17 | + "declaration": true, |
| 18 | + "declarationMap": true, |
| 19 | + "inlineSourceMap": true, |
| 20 | + "outDir": "dist", |
| 21 | + /* Interop Constraints */ |
18 | 22 | "allowSyntheticDefaultImports": true, |
| 23 | + "isolatedModules": true, |
| 24 | + /* Language and Environment */ |
| 25 | + "jsx": "react", |
| 26 | + "lib": [ |
| 27 | + "dom", |
| 28 | + "esnext" |
| 29 | + ], |
19 | 30 | "target": "esnext", |
20 | | - "allowJs": true, |
21 | | - "skipLibCheck": true, |
22 | | - "strict": true, |
23 | | - "forceConsistentCasingInFileNames": true, |
24 | | - "resolveJsonModule": true, |
25 | | - "isolatedModules": true |
| 31 | + /* Completeness */ |
| 32 | + "skipLibCheck": true |
26 | 33 | }, |
27 | | - "include": ["src"], |
28 | | - "exclude": ["node_modules", "dist"] |
| 34 | + "include": [ |
| 35 | + "src" |
| 36 | + ] |
29 | 37 | } |
0 commit comments