| 1234567891011121314151617 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "CommonJS",
- "rootDir": "src",
- "outDir": "dist",
- "strict": true,
- "esModuleInterop": true,
- "noFallthroughCasesInSwitch": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "strictPropertyInitialization": false,
- },
- "exclude": [
- "scripts"
- ]
- }
|