| { |
| "compilerOptions": { |
| /* Visit https://aka.ms/tsconfig.json to read more about this file */ |
| |
| "target": "ES2022", |
| "module": "NodeNext", |
| "moduleResolution": "nodenext", |
| "allowJs": true, |
| "checkJs": true, |
| "noEmit": true, |
| "noFallthroughCasesInSwitch": true, |
| "noImplicitAny": false, |
| "esModuleInterop": true, |
| "resolveJsonModule": true, |
| "allowSyntheticDefaultImports": true, |
| "allowUnreachableCode": false, |
| "forceConsistentCasingInFileNames": true, |
| "strict": true, |
| "skipLibCheck": true, |
| "maxNodeModuleJsDepth": 0, |
| "types": ["mocha"] |
| }, |
| "exclude": ["build", "node_modules", "coverage"], |
| "typeRoots": ["./node_modules/@types", "./types"] |
| } |