| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "useDefineForClassFields": true, |
| 5 | "lib": ["ES2023", "DOM", "DOM.Iterable"], |
| 6 | "module": "ESNext", |
| 7 | "skipLibCheck": true, |
| 8 | "moduleResolution": "bundler", |
| 9 | "allowImportingTsExtensions": false, |
| 10 | "resolveJsonModule": true, |
| 11 | "isolatedModules": true, |
| 12 | "moduleDetection": "force", |
| 13 | "noEmit": true, |
| 14 | "jsx": "react-jsx", |
| 15 | "strict": true, |
| 16 | "noUnusedLocals": true, |
| 17 | "noUnusedParameters": true, |
| 18 | "noFallthroughCasesInSwitch": true, |
| 19 | "types": ["node", "vite/client", "vitest/globals", "@testing-library/jest-dom"], |
| 20 | "baseUrl": ".", |
| 21 | "paths": { |
| 22 | "@/*": ["src/*"] |
| 23 | } |
| 24 | }, |
| 25 | "include": ["src", "vite.config.ts"] |
| 26 | } |