| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "es6", |
| 4 | "lib": ["ES2021.WeakRef", "dom", "dom.iterable", "esnext"], |
| 5 | "types": ["vite/client"], |
| 6 | "allowJs": true, |
| 7 | "skipLibCheck": true, |
| 8 | "esModuleInterop": true, |
| 9 | "experimentalDecorators": true, |
| 10 | "allowSyntheticDefaultImports": true, |
| 11 | "strict": true, |
| 12 | "forceConsistentCasingInFileNames": true, |
| 13 | "downlevelIteration": true, |
| 14 | "noFallthroughCasesInSwitch": true, |
| 15 | "module": "esnext", |
| 16 | "moduleResolution": "node", |
| 17 | "resolveJsonModule": true, |
| 18 | "isolatedModules": true, |
| 19 | "noEmit": true, |
| 20 | "jsx": "react-jsx" |
| 21 | }, |
| 22 | "include": ["src", "integrationTests", "vite-env.d.ts", "jest.config.cjs"] |
| 23 | } |
| 24 | |