|
1 | 1 | {
|
2 |
| - "$schema": "https://json.schemastore.org/tsconfig", |
3 | 2 | "compilerOptions": {
|
4 |
| - "target": "ES2020", |
5 | 3 | "allowJs": true,
|
6 |
| - "skipLibCheck": true, |
7 |
| - "strict": false, |
| 4 | + "baseUrl": ".", |
| 5 | + "downlevelIteration": true, |
| 6 | + "esModuleInterop": true, |
8 | 7 | "forceConsistentCasingInFileNames": true,
|
9 |
| - "noEmit": true, |
10 | 8 | "incremental": true,
|
11 |
| - "esModuleInterop": true, |
12 |
| - "module": "esnext", |
13 |
| - "moduleResolution": "node", |
14 |
| - "resolveJsonModule": true, |
15 | 9 | "isolatedModules": true,
|
16 | 10 | "jsx": "preserve",
|
17 |
| - "lib": ["DOM", "dom.iterable", "es2019", "esNext"], |
18 |
| - "downlevelIteration": true, |
19 |
| - "plugins": [ |
20 |
| - { |
21 |
| - "name": "next" |
22 |
| - } |
23 |
| - ], |
24 |
| - "strictNullChecks": true, |
| 11 | + "lib": ["dom", "dom.iterable", "es2019", "esNext"], |
| 12 | + "module": "esnext", |
| 13 | + "moduleResolution": "nodenext", |
| 14 | + "noEmit": true, |
25 | 15 | "paths": {
|
26 | 16 | "~/*": ["./src/*"]
|
27 | 17 | },
|
28 |
| - "baseUrl": "." |
| 18 | + "plugins": [], |
| 19 | + "resolveJsonModule": true, |
| 20 | + "skipLibCheck": true, |
| 21 | + "strict": true, |
| 22 | + "strictNullChecks": true, |
| 23 | + "target": "ES2020" |
29 | 24 | },
|
30 |
| - "include": [ |
31 |
| - "next-env.d.ts", |
32 |
| - "**/*.ts", |
33 |
| - "**/*.tsx", |
34 |
| - ".next/types/**/*.ts", |
35 |
| - "./src/types/**/*.d.ts" |
36 |
| - ], |
37 |
| - "exclude": ["node_modules", "**/*Legacy.ts", "**/*Legacy.tsx"] |
| 25 | + "exclude": ["node_modules"], |
| 26 | + "include": ["**/*.ts", "**/*.tsx"] |
38 | 27 | }
|
0 commit comments