mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-13 19:21:56 +01:00
30 lines
643 B
JSON
30 lines
643 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": "./"
|
||
|
},
|
||
|
"files": [
|
||
|
"src/app/app.module.ts",
|
||
|
"src/main-aot.ts"
|
||
|
],
|
||
|
"angularCompilerOptions": {
|
||
|
"skipTemplateCodegen": true,
|
||
|
"skipMetadataEmit": false,
|
||
|
"fullTemplateTypeCheck": false
|
||
|
}
|
||
|
}
|