control-center/tsconfig.json
2022-08-01 19:21:48 +03:00

31 lines
908 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2020",
"typeRoots": ["./node_modules/@types"],
"lib": ["ESNext", "DOM"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": false,
"paths": {
"@cc/*": ["src/*"],
"@vality/ng-core": ["dist/ng-core"],
"thrift": ["node_modules/@vality/woody/dist/thrift"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}