12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "incremental": true,
- "target": "ES2021",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "baseUrl": "./",
- "module": "commonjs",
- "paths": {
- "@/*": ["./src/*"]
- },
- "strictBindCallApply": false,
- "strictNullChecks": false,
- "noFallthroughCasesInSwitch": false,
- "noImplicitAny": false,
- "declaration": true,
- "outDir": "./dist",
- "removeComments": true,
- "sourceMap": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": false,
- "skipLibCheck": true
- }
- }
|