tsconfig.json
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"target": "es5",
"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",
"node_modules/@geoman-io/leaflet-geoman-free/dist/leaflet-geoman.d.ts",
"src/typings/leaflet-geoman-extend.d.ts"
],
"paths": {
"@app/*": ["src/app/*"],
"@env/*": [
"src/environments/*"
],
"@core/*": ["src/app/core/*"],
"@modules/*": ["src/app/modules/*"],
"@shared/*": ["src/app/shared/*"],
"@home/*": ["src/app/modules/home/*"],
"jszip": [
"node_modules/jszip/dist/jszip.min.js"
],
"ace": [
"node_modules/ace-builds/src-noconflict/ace.js"
],
"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"
]
},
"lib": [
"es2018",
"es2019",
"dom"
]
}
}