thingsboard/ui-ngx/tsconfig.json

80 lines
2.0 KiB
JSON
Raw Normal View History

{
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,
"declaration": false,
2021-12-06 12:54:48 +02:00
"downlevelIteration": true,
"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,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"typeRoots": [
"node_modules/@types",
"src/typings/rawloader.typings.d.ts",
"src/typings/jquery.typings.d.ts",
"src/typings/jquery.flot.typings.d.ts",
"src/typings/jquery.jstree.typings.d.ts",
"src/typings/split.js.typings.d.ts",
"src/typings/leaflet-geoman-extend.d.ts",
2023-02-16 19:28:12 +02:00
"src/typings/leaflet-extend-tb.d.ts"
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
]
},
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
}
}