-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.base.json
134 lines (134 loc) · 5.74 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@myorg/app-example-api-services": [
"libs/app-example-api-services/src/index.ts"
],
"@myorg/app-example-auth": ["libs/app-example-auth/src/index.ts"],
"@myorg/app-example-core": ["libs/app-example-core/src/index.ts"],
"@myorg/app-example-forms": ["libs/app-example-forms/src/index.ts"],
"@myorg/app-example-models": [
"libs/app-example-models/src/index.ts"
],
"@myorg/app-example-states": [
"libs/app-example-states/src/index.ts"
],
"@myorg/app-example-store": ["libs/app-example-store/src/index.ts"],
"@myorg/common-animations": ["libs/common-animations/src/index.ts"],
"@myorg/common-auth": ["libs/common-auth/src/index.ts"],
"@myorg/common-directives": ["libs/common-directives/src/index.ts"],
"@myorg/common-models": ["libs/common-models/src/index.ts"],
"@myorg/common-pipes": ["libs/common-pipes/src/index.ts"],
"@myorg/common-services": ["libs/common-services/src/index.ts"],
"@myorg/material-modules": ["libs/material-modules/src/index.ts"],
"@myorg/page-layouts": ["libs/page-layouts/src/index.ts"],
"@myorg/spartan-modules": ["libs/spartan-modules/src/index.ts"],
"@myorg/store": ["libs/store/src/index.ts"],
"@myorg/utils": ["libs/utils/src/index.ts"],
"@spartan-ng/ui-accordion-helm": [
"libs/ui/ui-accordion-helm/src/index.ts"
],
"@spartan-ng/ui-alert-helm": ["libs/ui/ui-alert-helm/src/index.ts"],
"@spartan-ng/ui-alertdialog-helm": [
"libs/ui/ui-alertdialog-helm/src/index.ts"
],
"@spartan-ng/ui-aspectratio-helm": [
"libs/ui/ui-aspectratio-helm/src/index.ts"
],
"@spartan-ng/ui-avatar-helm": [
"libs/ui/ui-avatar-helm/src/index.ts"
],
"@spartan-ng/ui-badge-helm": ["libs/ui/ui-badge-helm/src/index.ts"],
"@spartan-ng/ui-button-helm": [
"libs/ui/ui-button-helm/src/index.ts"
],
"@spartan-ng/ui-card-helm": ["libs/ui/ui-card-helm/src/index.ts"],
"@spartan-ng/ui-carousel-helm": [
"libs/ui/ui-carousel-helm/src/index.ts"
],
"@spartan-ng/ui-checkbox-helm": [
"libs/ui/ui-checkbox-helm/src/index.ts"
],
"@spartan-ng/ui-command-helm": [
"libs/ui/ui-command-helm/src/index.ts"
],
"@spartan-ng/ui-dialog-helm": [
"libs/ui/ui-dialog-helm/src/index.ts"
],
"@spartan-ng/ui-formfield-helm": [
"libs/ui/ui-formfield-helm/src/index.ts"
],
"@spartan-ng/ui-hovercard-helm": [
"libs/ui/ui-hovercard-helm/src/index.ts"
],
"@spartan-ng/ui-icon-helm": ["libs/ui/ui-icon-helm/src/index.ts"],
"@spartan-ng/ui-input-helm": ["libs/ui/ui-input-helm/src/index.ts"],
"@spartan-ng/ui-label-helm": ["libs/ui/ui-label-helm/src/index.ts"],
"@spartan-ng/ui-menu-helm": ["libs/ui/ui-menu-helm/src/index.ts"],
"@spartan-ng/ui-pagination-helm": [
"libs/ui/ui-pagination-helm/src/index.ts"
],
"@spartan-ng/ui-popover-helm": [
"libs/ui/ui-popover-helm/src/index.ts"
],
"@spartan-ng/ui-progress-helm": [
"libs/ui/ui-progress-helm/src/index.ts"
],
"@spartan-ng/ui-radiogroup-helm": [
"libs/ui/ui-radiogroup-helm/src/index.ts"
],
"@spartan-ng/ui-scrollarea-helm": [
"libs/ui/ui-scrollarea-helm/src/index.ts"
],
"@spartan-ng/ui-select-helm": [
"libs/ui/ui-select-helm/src/index.ts"
],
"@spartan-ng/ui-separator-helm": [
"libs/ui/ui-separator-helm/src/index.ts"
],
"@spartan-ng/ui-sheet-helm": ["libs/ui/ui-sheet-helm/src/index.ts"],
"@spartan-ng/ui-skeleton-helm": [
"libs/ui/ui-skeleton-helm/src/index.ts"
],
"@spartan-ng/ui-slider-helm": [
"libs/ui/ui-slider-helm/src/index.ts"
],
"@spartan-ng/ui-sonner-helm": [
"libs/ui/ui-sonner-helm/src/index.ts"
],
"@spartan-ng/ui-spinner-helm": [
"libs/ui/ui-spinner-helm/src/index.ts"
],
"@spartan-ng/ui-switch-helm": [
"libs/ui/ui-switch-helm/src/index.ts"
],
"@spartan-ng/ui-table-helm": ["libs/ui/ui-table-helm/src/index.ts"],
"@spartan-ng/ui-tabs-helm": ["libs/ui/ui-tabs-helm/src/index.ts"],
"@spartan-ng/ui-toggle-helm": [
"libs/ui/ui-toggle-helm/src/index.ts"
],
"@spartan-ng/ui-tooltip-helm": [
"libs/ui/ui-tooltip-helm/src/index.ts"
],
"@spartan-ng/ui-typography-helm": [
"libs/ui/ui-typography-helm/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}