-
Notifications
You must be signed in to change notification settings - Fork 23
/
tsconfig.base.json
112 lines (112 loc) · 3.05 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"resolveJsonModule": true,
"paths": {
"@perun-web-apps/config": [
"libs/config/src/index.ts"
],
"@perun-web-apps/config/table-config": [
"libs/config/table-config/src/index.ts"
],
"@perun-web-apps/dialogs": [
"libs/dialogs/src/index.ts"
],
"@perun-web-apps/general": [
"libs/general/src/index.ts"
],
"@perun-web-apps/lib-linker": [
"libs/lib-linker/src/index.ts"
],
"@perun-web-apps/perun/animations": [
"libs/perun/animations/src/index.ts"
],
"@perun-web-apps/perun/components": [
"libs/perun/components/src/index.ts"
],
"@perun-web-apps/perun/dialogs": [
"libs/perun/dialogs/src/index.ts"
],
"@perun-web-apps/perun/directives": [
"libs/perun/directives/src/index.ts"
],
"@perun-web-apps/perun/facility-services-config": [
"libs/perun/facility-services-config/src/index.ts"
],
"@perun-web-apps/perun/login": [
"libs/perun/login/src/index.ts"
],
"@perun-web-apps/perun/models": [
"libs/perun/models/src/index.ts"
],
"@perun-web-apps/perun/multi-factor-authentication": [
"libs/perun/multi-factor-authentication/src/index.ts"
],
"@perun-web-apps/perun/namespace-password-form": [
"libs/perun/namespace-password-form/src/index.ts"
],
"@perun-web-apps/perun/openapi": [
"libs/perun/openapi/src/index.ts"
],
"@perun-web-apps/perun/pipes": [
"libs/perun/pipes/src/index.ts"
],
"@perun-web-apps/perun/services": [
"libs/perun/services/src/index.ts"
],
"@perun-web-apps/perun/session-expiration": [
"libs/perun/session-expiration/src/index.ts"
],
"@perun-web-apps/perun/table-utils": [
"libs/perun/table-utils/src/index.ts"
],
"@perun-web-apps/perun/tokens": [
"libs/perun/tokens/src/index.ts"
],
"@perun-web-apps/perun/urns": [
"libs/perun/urns/src/index.ts"
],
"@perun-web-apps/perun/utils": [
"libs/perun/utils/src/index.ts"
],
"@perun-web-apps/ui": [
"libs/ui/src/index.ts"
],
"@perun-web-apps/ui/alerts": [
"libs/ui/alerts/src/index.ts"
],
"@perun-web-apps/ui/loaders": [
"libs/ui/loaders/src/index.ts"
],
"@perun-web-apps/ui/material": [
"libs/ui/material/src/index.ts"
],
"perun-table-util": [
"libs/perun-table-util/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}