harbor/src/portal/tsconfig.json
Yogi_Wang a7c7a8e675 Upgrade angualr from 7.1.3 to 8.2.0 and clarity from 1.0 to 2.2
Signed-off-by: Yogi_Wang <yawang@vmware.com>

Signed-off-by: Meina Zhou <meinaz@vmware.com>
Signed-off-by: sshijun <sshijun@vmware.com>
2019-09-18 10:12:20 +08:00

38 lines
784 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2017",
"dom"
],
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"./node_modules/@types/"
],
"baseUrl": "./",
"paths": {
"lib": [
"dist/lib"
],
"lib/*": [
"dist/lib/*"
],
"@angular/*": [ "./node_modules/@angular/*"]
}
},
"files": [
"src/app/app.module.ts",
],
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"skipMetadataEmit": false,
"fullTemplateTypeCheck": false
}
}