| { |
| "compilerOptions": { |
| "target": "ES2022", |
| "module": "ES2022", |
| "lib": ["ES2022"], |
| "moduleResolution": "node", |
| "esModuleInterop": true, |
| "allowSyntheticDefaultImports": true, |
| "strict": true, |
| "skipLibCheck": true, |
| "forceConsistentCasingInFileNames": true, |
| "resolveJsonModule": true, |
| "outDir": "./dist", |
| "rootDir": "./src", |
| "declaration": true, |
| "declarationMap": true, |
| "sourceMap": true, |
| "noImplicitAny": true, |
| "strictNullChecks": true, |
| "strictFunctionTypes": true, |
| "noUnusedLocals": true, |
| "noUnusedParameters": true, |
| "noImplicitReturns": true, |
| "noFallthroughCasesInSwitch": true |
| }, |
| "include": ["src/**/*"], |
| "exclude": ["node_modules", "dist"] |
| } |
|
|
|
|