control-center/tsconfig.json

31 lines
908 B
JSON
Raw Permalink Normal View History

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
2022-07-07 09:02:53 +00:00
"target": "es2020",
"typeRoots": ["./node_modules/@types"],
"lib": ["ESNext", "DOM"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
2021-08-05 15:26:06 +00:00
"skipLibCheck": false,
"paths": {
"@cc/*": ["src/*"],
2022-08-01 16:21:48 +00:00
"@vality/ng-core": ["dist/ng-core"],
"thrift": ["node_modules/@vality/woody/dist/thrift"]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}