| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "module": "ESNext", |
| 5 | "moduleResolution": "bundler", |
| 6 | "outDir": "dist", |
| 7 | "rootDir": "src", |
| 8 | "strict": true, |
| 9 | "esModuleInterop": true, |
| 10 | "skipLibCheck": true, |
| 11 | "forceConsistentCasingInFileNames": true, |
| 12 | "resolveJsonModule": true, |
| 13 | "declaration": true, |
| 14 | "declarationMap": true, |
| 15 | "sourceMap": true |
| 16 | }, |
| 17 | "include": ["src/**/*"], |
| 18 | "exclude": ["node_modules", "dist"] |
| 19 | } |
| 20 |