-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
98 lines (98 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "esnext",
"lib": [
"ES2022",
"DOM"
],
"resolveJsonModule": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"typeRoots": [
"node_modules/@types"
],
"paths": {
"@components/*": [
"apps/human-atlas/src/app/components/*"
],
"@hra-ui/cde-visualization": [
"libs/cde-visualization/src/index.ts"
],
"@hra-ui/cdk": [
"libs/cdk/src/index.ts"
],
"@hra-ui/cdk/*": [
"libs/cdk/*/src/index.ts"
],
"@hra-ui/common": [
"libs/common/src/index.ts"
],
"@hra-ui/common/*": [
"libs/common/*/src/index.ts"
],
"@hra-ui/components/*": [
"libs/components/*/src/index.ts"
],
"@hra-ui/dashboard": [
"libs/dashboard/src/index.ts"
],
"@hra-ui/design-system": [
"libs/design-system/src/index.ts"
],
"@hra-ui/design-system/*": [
"libs/design-system/*/src/index.ts"
],
"@hra-ui/node-dist-vis": [
"libs/node-dist-vis/src/index.ts"
],
"@hra-ui/node-dist-vis/*": [
"libs/node-dist-vis/*/src/index.ts"
],
"@hra-ui/services": [
"libs/services/src/index.ts"
],
"@hra-ui/state": [
"libs/state/src/index.ts"
],
"@hra-ui/theming": [
"libs/shared/theming/src/index.ts"
],
"@hra-ui/utils": [
"libs/shared/utils/src/index.ts"
],
"@hra-ui/utils/*": [
"libs/shared/utils/*/src/index.ts"
],
"@hra-ui/webcomponents": [
"libs/shared/webcomponents/src/index.ts"
],
"ccf-body-ui": [
"libs/ccf-body-ui/src/public-api.ts"
],
"ccf-scene-utils": [
"libs/ccf-scene-utils/src/index.ts"
],
"ccf-shared": [
"libs/ccf-shared/src/public-api.ts"
],
"ccf-shared/*": [
"libs/ccf-shared/*/src/public-api.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}