mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
- Move files to core lib - Fix imports - Fix unit tests configuration - Fix configuration - Use ng-dynamic-component no barrels version -- enables using ng-dynamic-component in angular lib
40 lines
818 B
JSON
40 lines
818 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"target": "es2015",
|
|
"typeRoots": [
|
|
"../../node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@app/*": [
|
|
"core/app/shell/src/app/*"
|
|
],
|
|
"common": [
|
|
"dist/common/common",
|
|
"dist/common"
|
|
],
|
|
"core": [
|
|
"dist/core/core",
|
|
"dist/core"
|
|
]
|
|
},
|
|
"lib": [
|
|
"es2018",
|
|
"dom",
|
|
"esnext.asynciterable"
|
|
]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"fullTemplateTypeCheck": true
|
|
}
|
|
}
|