SuiteCRM-Core/tsconfig.json

41 lines
818 B
JSON
Raw Normal View History

2021-03-30 19:12:01 +01:00
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
2021-03-30 19:12:01 +01:00
"importHelpers": true,
"target": "es2015",
"typeRoots": [
"../../node_modules/@types"
2021-03-30 19:12:01 +01:00
],
"paths": {
"@app/*": [
"core/app/shell/src/app/*"
],
2021-02-12 21:57:48 +00:00
"common": [
"dist/common/common",
"dist/common"
],
"core": [
"dist/core/core",
"dist/core"
]
},
2021-03-30 19:12:01 +01:00
"lib": [
"es2018",
"dom",
"esnext.asynciterable"
2021-03-30 19:12:01 +01:00
]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true
2021-03-30 19:12:01 +01:00
}
}