-
Notifications
You must be signed in to change notification settings - Fork 27
/
tsconfig.base.json
79 lines (79 loc) · 1.9 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": [
"es2020",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@baloise/ds-angular": [
"packages/angular/src/index.ts"
],
"@baloise/ds-angular-common": [
"packages/angular-common/src/index.ts"
],
"@baloise/ds-angular-legacy": [
"packages/angular-legacy/src/index.ts"
],
"@baloise/ds-angular-module": [
"packages/angular-module/src/index.ts"
],
"@baloise/ds-brand-icons": [
"packages/brand-icons/src/index.ts"
],
"@baloise/ds-core": [
"packages/core/src/index.ts"
],
"@baloise/ds-devkit": [
"packages/devkit/src/index.ts"
],
"@baloise/ds-icons": [
"packages/icons/src/index.ts"
],
"@baloise/ds-maps": [
"packages/maps/src/index.ts"
],
"@baloise/ds-nx": [
"libs/nx/src/index.ts"
],
"@baloise/ds-react": [
"packages/react/src/index.ts"
],
"@baloise/ds-table": [
"packages/table/src/index.ts"
],
"@baloise/ds-testing": [
"packages/testing/src/index.ts"
],
"@baloise/ds-vue": [
"packages/vue/src/index.ts"
],
"@baloise/output-target-angular": [
"libs/output-target-angular/src/index.ts"
],
"@baloise/output-target-react": [
"libs/output-target-react/src/index.ts"
],
"@baloise/output-target-vue": [
"libs/output-target-vue/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}