19 lines
569 B
JSON
19 lines
569 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"target": "ES2021",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"strictPropertyInitialization": false,
|
||
|
|
"removeComments": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"strictNullChecks": false,
|
||
|
|
"noImplicitAny": false,
|
||
|
|
"strictBindCallApply": false,
|
||
|
|
"noFallthroughCasesInSwitch": false
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts", "**/*.e2e-spec.ts", "**/__tests__/**"]
|
||
|
|
}
|