| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2020", |
| 4 | "module": "ESNext", |
| 5 | "moduleResolution": "bundler", |
| 6 | "jsx": "react-jsx", |
| 7 | "strict": true, |
| 8 | "esModuleInterop": true, |
| 9 | "skipLibCheck": true, |
| 10 | "declaration": true, |
| 11 | "declarationDir": "dist", |
| 12 | "outDir": "dist", |
| 13 | "rootDir": "src", |
| 14 | "types": ["vitest/globals", "@testing-library/jest-dom"] |
| 15 | }, |
| 16 | "include": ["src"] |
| 17 | } |
| 18 |