|
1 | 1 | { |
| 2 | + "include": ["*env.d.ts", "src/**/*", "./typings/**/*"], |
| 3 | + "exclude": ["node_modules", "src/__tests__/**"], |
2 | 4 | "compilerOptions": { |
3 | | - "outDir": "./_target", |
4 | | - "target": "es5", |
5 | | - "module": "commonjs", |
6 | | - "moduleResolution": "node", |
7 | | - "lib": ["es2020", "dom"], |
| 5 | + "outDir": "_target", |
| 6 | + "module": "CommonJS", |
| 7 | + "moduleResolution": "Node", |
| 8 | + "target": "ES6", |
| 9 | + "lib": ["ES6", "DOM"], |
| 10 | + "jsx": "preserve", |
8 | 11 | "allowJs": false, |
| 12 | + "checkJs": false, |
| 13 | + "importHelpers": true, |
| 14 | + "esModuleInterop": true, |
| 15 | + "allowSyntheticDefaultImports": true, |
| 16 | + "strict": true, |
| 17 | + "noUnusedLocals": true, |
| 18 | + "noUnusedParameters": true, |
| 19 | + "noImplicitReturns": true, |
| 20 | + "noFallthroughCasesInSwitch": true, |
| 21 | + "skipLibCheck": true, |
| 22 | + "resolveJsonModule": true, |
9 | 23 | "declaration": true, |
10 | 24 | "declarationMap": true, |
| 25 | + "sourceMap": true, |
| 26 | + "noEmit": false, |
| 27 | + "forceConsistentCasingInFileNames": true, |
| 28 | + "isolatedModules": true, |
| 29 | + "incremental": false, |
11 | 30 | "strictNullChecks": true, |
12 | 31 | "removeComments": true, |
13 | 32 | "preserveConstEnums": true, |
14 | | - "sourceMap": true, |
15 | 33 | "alwaysStrict": true, |
16 | | - "strict": true, |
17 | 34 | "noImplicitAny": true, |
18 | | - "noImplicitThis": true, |
19 | | - "noUnusedParameters": true, |
20 | | - "noUnusedLocals": true, |
21 | | - "noImplicitReturns": true, |
22 | | - "noFallthroughCasesInSwitch": true, |
23 | | - "forceConsistentCasingInFileNames": true, |
24 | | - "esModuleInterop": true |
25 | | - }, |
26 | | - "include": ["./src/**/*", "./typings/**/*"], |
27 | | - "exclude": ["node_modules", "./src/__tests__/*"] |
| 35 | + "noImplicitThis": true |
| 36 | + } |
28 | 37 | } |
0 commit comments