|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
3 | | - "target": "es5", |
4 | | - "lib": ["dom", "dom.iterable", "esnext"], |
| 3 | + "allowArbitraryExtensions": true, |
5 | 4 | "allowJs": true, |
6 | | - "skipLibCheck": true, |
7 | | - "strict": true, |
8 | | - "forceConsistentCasingInFileNames": true, |
9 | | - "noEmit": true, |
| 5 | + "allowSyntheticDefaultImports": true, |
| 6 | + "checkJs": true, |
| 7 | + "declaration": true, |
| 8 | + "declarationMap": true, |
10 | 9 | "esModuleInterop": true, |
11 | | - "module": "esnext", |
12 | | - "moduleResolution": "node", |
13 | | - "resolveJsonModule": true, |
14 | | - "isolatedModules": true, |
15 | | - "jsx": "preserve", |
| 10 | + "forceConsistentCasingInFileNames": true, |
16 | 11 | "incremental": true, |
| 12 | + "isolatedModules": true, |
| 13 | + "jsx": "react-jsx", |
| 14 | + "lib": ["DOM", "DOM.Iterable", "ESNext"], |
| 15 | + "module": "esnext", |
| 16 | + "moduleDetection": "force", |
| 17 | + "moduleResolution": "bundler", |
| 18 | + "noEmit": true, |
| 19 | + "noEmitOnError": true, |
| 20 | + "noErrorTruncation": true, |
| 21 | + "noImplicitOverride": true, |
| 22 | + "noImplicitReturns": true, |
| 23 | + "outDir": "./dist", |
17 | 24 | "plugins": [ |
18 | 25 | { |
19 | 26 | "name": "next" |
20 | 27 | } |
21 | 28 | ], |
22 | | - "paths": { |
23 | | - "@/*": ["./*"] |
24 | | - } |
| 29 | + "resolveJsonModule": true, |
| 30 | + "rootDir": "./", |
| 31 | + "skipLibCheck": true, |
| 32 | + "sourceMap": true, |
| 33 | + "strict": true, |
| 34 | + "target": "esnext", |
| 35 | + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo", |
| 36 | + "types": ["node"], |
| 37 | + "useDefineForClassFields": true, |
| 38 | + "useUnknownInCatchVariables": true, |
| 39 | + "verbatimModuleSyntax": true |
25 | 40 | }, |
26 | | - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], |
27 | | - "exclude": ["node_modules"] |
| 41 | + "exclude": ["node_modules", "dist"], |
| 42 | + "include": [ |
| 43 | + "next-env.d.ts", |
| 44 | + "**/*.ts", |
| 45 | + "**/*.tsx", |
| 46 | + ".next/types/**/*.ts", |
| 47 | + ".next/dev/types/**/*.ts", |
| 48 | + "**/*.mts" |
| 49 | + ] |
28 | 50 | } |
0 commit comments