18 lines · 393 B
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "module": "ES2022", |
| 5 | "moduleResolution": "bundler", |
| 6 | "lib": ["ES2022"], |
| 7 | "strict": true, |
| 8 | "esModuleInterop": true, |
| 9 | "skipLibCheck": true, |
| 10 | "forceConsistentCasingInFileNames": true, |
| 11 | "resolveJsonModule": true, |
| 12 | "isolatedModules": true, |
| 13 | "declaration": true, |
| 14 | "declarationMap": true, |
| 15 | "sourceMap": true |
| 16 | } |
| 17 | } |
| 18 |