12345678910111213141516171819202122 |
- {
- "include": [
- "./src/**/*"
- ],
- "compilerOptions": {
- "sourceMap": true,
- "declaration": true,
- "declarationMap": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "noImplicitAny": false,
- "strictNullChecks": true,
- "esModuleInterop": true,
- "resolveJsonModule": true,
- "composite": true,
- "baseUrl": ".",
- "typeRoots": [
- "node_modules/@types"
- ],
- }
- }
|