| { |
| "compilerOptions": { |
| /* Visit https://aka.ms/tsconfig.json to read more about this file */ |
| |
| "target": "ES2022", |
| "module": "ESNext", |
| "moduleResolution": "node", |
| "noFallthroughCasesInSwitch": true, |
| "noImplicitAny": false, |
| "esModuleInterop": true, |
| "resolveJsonModule": true, |
| "allowSyntheticDefaultImports": true, |
| "allowUnreachableCode": false, |
| "forceConsistentCasingInFileNames": true, |
| "strict": true, |
| "skipLibCheck": true |
| }, |
| "exclude": ["build", "**/*.test.ts"], |
| "typeRoots": ["./node_modules/@types", "./types"] |
| } |