|
1 | 1 | {
|
2 | 2 | "compilerOptions": {
|
3 | 3 | "jsx": "react",
|
4 |
| - "lib": ["es2017", "es6", "dom"], |
5 |
| - "moduleResolution": "node", |
6 |
| - "target": "esnext", |
| 4 | + "target": "es5", |
| 5 | + "lib": ["dom", "dom.iterable", "esnext"], |
7 | 6 | "module": "esnext",
|
8 |
| - "incremental": true, |
9 |
| - "esModuleInterop": true, |
10 |
| - "isolatedModules": true, |
11 |
| - "resolveJsonModule": true, |
| 7 | + "moduleResolution": "node", |
12 | 8 | "allowJs": true,
|
13 |
| - "checkJs": true, |
14 |
| - "noEmit": true, |
15 | 9 | "skipLibCheck": true,
|
| 10 | + "esModuleInterop": true, |
| 11 | + "allowSyntheticDefaultImports": true, |
16 | 12 | "strict": true,
|
| 13 | + "forceConsistentCasingInFileNames": true, |
| 14 | + "resolveJsonModule": true, |
| 15 | + "isolatedModules": true, |
| 16 | + "noEmit": true, |
17 | 17 | "noImplicitAny": true,
|
18 | 18 | "strictNullChecks": true,
|
| 19 | + "strictFunctionTypes": true, |
| 20 | + "strictBindCallApply": true, |
19 | 21 | "noImplicitThis": true,
|
| 22 | + "strictPropertyInitialization": true, |
20 | 23 | "alwaysStrict": true,
|
21 | 24 | "noUnusedLocals": true,
|
22 | 25 | "noUnusedParameters": true,
|
23 | 26 | "noImplicitReturns": true,
|
24 |
| - "noFallthroughCasesInSwitch": true, |
25 |
| - "allowSyntheticDefaultImports": true, |
26 |
| - "forceConsistentCasingInFileNames": true |
| 27 | + "noFallthroughCasesInSwitch": true |
27 | 28 | },
|
28 | 29 | "include": ["src"]
|
29 | 30 | }
|
0 commit comments