forked from lega0208/upd-new
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
59 lines (59 loc) · 2.72 KB
/
tsconfig.base.json
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2020",
"module": "esnext",
"lib": ["ESNext", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@dua-upd/api/custom-reports": ["libs/api/custom-reports/src/index.ts"],
"@dua-upd/api/feedback": ["libs/api/feedback/src/index.ts"],
"@dua-upd/api/query": ["libs/api/query/src/index.ts"],
"@dua-upd/blob-storage": ["libs/blob-storage/src/index.ts"],
"@dua-upd/data-integrity": ["libs/data-integrity/src/index.ts"],
"@dua-upd/db": ["libs/db/src/index.ts"],
"@dua-upd/db-update": ["libs/db-update/src/index.ts"],
"@dua-upd/external-data": ["libs/external-data/src/index.ts"],
"@dua-upd/feedback": ["libs/feedback/src/index.ts"],
"@dua-upd/logger": ["libs/logger/src/index.ts"],
"@dua-upd/node-utils": ["libs/node-utils/src/index.ts"],
"@dua-upd/types-common": ["libs/types-common/src/index.ts"],
"@dua-upd/upd-components": ["libs/upd/components/src/index.ts"],
"@dua-upd/upd/i18n": ["libs/upd/i18n/src/index.ts"],
"@dua-upd/upd/pipes": ["libs/upd/pipes/src/index.ts"],
"@dua-upd/upd/services": ["libs/upd/services/src/index.ts"],
"@dua-upd/upd/state": ["libs/upd/state/src/index.ts"],
"@dua-upd/upd/utils": ["libs/upd/utils/src/index.ts"],
"@dua-upd/upd/views/about-us": ["libs/upd/views/about-us/src/index.ts"],
"@dua-upd/upd/views/custom-reports": [
"libs/upd/views/custom-reports/src/index.ts"
],
"@dua-upd/upd/views/overview": ["libs/upd/views/overview/src/index.ts"],
"@dua-upd/upd/views/pages": ["libs/upd/views/pages/src/index.ts"],
"@dua-upd/upd/views/projects": ["libs/upd/views/projects/src/index.ts"],
"@dua-upd/upd/views/reports": ["libs/upd/views/reports/src/index.ts"],
"@dua-upd/upd/views/tasks": ["libs/upd/views/tasks/src/index.ts"],
"@dua-upd/utils-common": ["libs/utils-common/src/index.ts"],
"@dua-upd/utils-common/data": ["libs/utils-common/src/lib/data/index.ts"],
"@dua-upd/utils-common/date": ["libs/utils-common/src/lib/date/index.ts"],
"@dua-upd/utils-common/math": ["libs/utils-common/src/lib/math/index.ts"],
"@dua-upd/utils-common/types": [
"libs/utils-common/src/lib/types/index.ts"
],
"@dua-upd/workspace-plugin": ["tools/workspace-plugin/src/index.ts"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "tmp"]
}