| { | |
| "include": [ | |
| "env.d.ts", | |
| "**/*.ts", | |
| "**/*.tsx", | |
| "**/*.js", | |
| "*.d.ts", | |
| "vite.config.mts" | |
| ], | |
| "exclude": ["build"], | |
| "compilerOptions": { | |
| "lib": ["DOM", "DOM.Iterable", "ESNext"], | |
| "isolatedModules": true, | |
| "esModuleInterop": true, | |
| "jsx": "react-jsx", | |
| "module": "ESNext", | |
| "moduleResolution": "Bundler", | |
| "resolveJsonModule": true, | |
| "target": "ESNext", | |
| "strict": true, | |
| "paths": { | |
| "~/*": ["./app/*"] | |
| }, | |
| "skipLibCheck": true, | |
| "noEmit": true, | |
| "baseUrl": ".", | |
| "allowJs": true, | |
| "forceConsistentCasingInFileNames": true | |
| } | |
| } | |