harbor/src/portal/tsconfig.json
Qian Deng ac6c9d79ba Remove nodeclarity
Remove the nodeclarity container related code and ui_builder parameter no longer needed when build clarity

Signed-off-by: Qian Deng <dengq@vmware.com>
2018-09-08 20:33:21 +08:00

37 lines
732 B
JSON

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