2019-08-08 19:39:06 +03:00
|
|
|
{
|
2020-10-08 11:45:50 +03:00
|
|
|
"compileOnSave": false,
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"outDir": "./dist/out-tsc",
|
2021-12-06 12:54:48 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-10-08 11:45:50 +03:00
|
|
|
"sourceMap": true,
|
2024-09-26 16:09:20 +03:00
|
|
|
"esModuleInterop": true,
|
2020-10-08 11:45:50 +03:00
|
|
|
"declaration": false,
|
2021-12-06 12:54:48 +02:00
|
|
|
"experimentalDecorators": true,
|
2020-10-08 11:45:50 +03:00
|
|
|
"moduleResolution": "node",
|
2021-12-06 12:54:48 +02:00
|
|
|
"importHelpers": true,
|
2023-02-16 19:28:12 +02:00
|
|
|
"target": "ES2022",
|
2021-12-06 12:54:48 +02:00
|
|
|
"module": "es2020",
|
2020-10-08 11:45:50 +03:00
|
|
|
"emitDecoratorMetadata": true,
|
2024-10-31 20:47:34 +02:00
|
|
|
"resolveJsonModule": true,
|
2020-10-08 11:45:50 +03:00
|
|
|
"typeRoots": [
|
|
|
|
|
"node_modules/@types",
|
2023-03-30 16:30:40 +03:00
|
|
|
"src/typings"
|
2020-10-08 11:45:50 +03:00
|
|
|
],
|
|
|
|
|
"paths": {
|
2023-02-16 19:28:12 +02:00
|
|
|
"@app/*": [
|
|
|
|
|
"src/app/*"
|
|
|
|
|
],
|
2020-10-08 11:45:50 +03:00
|
|
|
"@env/*": [
|
|
|
|
|
"src/environments/*"
|
|
|
|
|
],
|
2023-02-16 19:28:12 +02:00
|
|
|
"@core/*": [
|
|
|
|
|
"src/app/core/*"
|
|
|
|
|
],
|
|
|
|
|
"@modules/*": [
|
|
|
|
|
"src/app/modules/*"
|
|
|
|
|
],
|
|
|
|
|
"@shared/*": [
|
|
|
|
|
"src/app/shared/*"
|
|
|
|
|
],
|
|
|
|
|
"@home/*": [
|
|
|
|
|
"src/app/modules/home/*"
|
|
|
|
|
],
|
2020-10-08 11:45:50 +03:00
|
|
|
"jszip": [
|
|
|
|
|
"node_modules/jszip/dist/jszip.min.js"
|
2020-12-28 16:06:36 +02:00
|
|
|
],
|
|
|
|
|
"ace": [
|
|
|
|
|
"node_modules/ace-builds/src-noconflict/ace.js"
|
2021-01-05 11:37:05 +02:00
|
|
|
],
|
|
|
|
|
"jquery": [
|
|
|
|
|
"node_modules/jquery/dist/jquery.min.js"
|
|
|
|
|
],
|
|
|
|
|
"jquery.terminal": [
|
|
|
|
|
"node_modules/jquery.terminal/js/jquery.terminal.js"
|
|
|
|
|
],
|
|
|
|
|
"tooltipster": [
|
|
|
|
|
"node_modules/tooltipster/dist/js/tooltipster.bundle.min.js"
|
|
|
|
|
],
|
|
|
|
|
"jstree": [
|
|
|
|
|
"node_modules/jstree/dist/jstree.min.js"
|
2020-10-08 11:45:50 +03:00
|
|
|
]
|
2019-08-08 19:39:06 +03:00
|
|
|
},
|
2020-10-08 11:45:50 +03:00
|
|
|
"lib": [
|
2021-12-06 12:54:48 +02:00
|
|
|
"es2020",
|
2020-10-08 11:45:50 +03:00
|
|
|
"dom"
|
2023-02-16 19:28:12 +02:00
|
|
|
],
|
|
|
|
|
"useDefineForClassFields": false
|
2021-12-06 12:54:48 +02:00
|
|
|
},
|
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
|
"strictTemplates": false
|
2020-10-08 11:45:50 +03:00
|
|
|
}
|
|
|
|
|
}
|