2020-10-02 21:57:48 +02:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"outDir": "./dist/out-tsc",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"target": "es2018",
|
2023-04-22 00:31:37 +02:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"es2018",
|
|
|
|
"dom"
|
|
|
|
],
|
2020-10-02 21:57:48 +02:00
|
|
|
"module": "es2020",
|
|
|
|
"baseUrl": "./src/",
|
|
|
|
"paths": {
|
2023-04-22 00:31:37 +02:00
|
|
|
"@app-base/*": [
|
|
|
|
"./src/base/"
|
|
|
|
],
|
|
|
|
"@app-root/*": [
|
|
|
|
"./src/app-root/"
|
|
|
|
],
|
|
|
|
"@app-edge/*": [
|
|
|
|
"./src/app-edge/"
|
|
|
|
],
|
|
|
|
"@common/*": [
|
|
|
|
"./src/common/"
|
|
|
|
]
|
2020-10-02 21:57:48 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-22 00:31:37 +02:00
|
|
|
}
|