|
1 | 1 | { |
2 | | - "extends": "../tsconfig.json", |
3 | | - "include": ["src", "vite.config.ts"], |
4 | 2 | "compilerOptions": { |
| 3 | + "rootDir": ".", |
| 4 | + "baseUrl": ".", |
| 5 | + "target": "ESNext", |
| 6 | + "lib": ["DOM", "DOM.Iterable", "ESNext"], |
| 7 | + "module": "ESNext", |
| 8 | + "moduleResolution": "Node", |
5 | 9 | "jsx": "react-jsx", |
6 | | - "lib": ["dom", "es2018"] |
7 | | - } |
| 10 | + "noEmit": true, |
| 11 | + "alwaysStrict": true, |
| 12 | + "noImplicitThis": true, |
| 13 | + "noImplicitReturns": true, |
| 14 | + "removeComments": true, |
| 15 | + "preserveConstEnums": true, |
| 16 | + "strictFunctionTypes": true, |
| 17 | + "strictNullChecks": true, |
| 18 | + "noImplicitAny": true, |
| 19 | + "esModuleInterop": false, |
| 20 | + "declaration": true, |
| 21 | + "allowJs": false, |
| 22 | + "skipLibCheck": true, |
| 23 | + "allowSyntheticDefaultImports": true, |
| 24 | + "strict": true, |
| 25 | + "forceConsistentCasingInFileNames": true, |
| 26 | + "resolveJsonModule": true, |
| 27 | + "isolatedModules": true, |
| 28 | + "noUnusedLocals": true, |
| 29 | + "downlevelIteration": true, |
| 30 | + "noFallthroughCasesInSwitch": true, |
| 31 | + "paths": { |
| 32 | + "@/*": ["./src/*"] |
| 33 | + } |
| 34 | + }, |
| 35 | + "include": ["./src"], |
| 36 | + "exclude": ["node_modules"] |
8 | 37 | } |
0 commit comments