|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "compilerOptions": {
- "baseUrl": "./src",
- "rootDir": "./src",
- "allowJs": false,
- "checkJs": false,
- "skipLibCheck": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "isolatedModules": true,
- "module": "es2020",
- "noImplicitAny": true,
- "declaration": true,
- "declarationMap": true,
- "declarationDir": "dist",
- "outDir": "dist",
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "removeComments": false,
- "preserveConstEnums": true,
- "moduleResolution": "node",
- "emitDecoratorMetadata": false,
- "sourceMap": true,
- "target": "ES2021",
- "strictNullChecks": true,
- "lib": [
- "es2020",
- "esnext",
- "dom"
- ]
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "**/*.spec.ts",
- "dist"
- ]
- }
|