forked from CESNET/perun-web-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
55 lines (55 loc) · 2.11 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
{
"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/ui": ["libs/ui/src/index.ts"],
"@perun-web-apps/ui/material": ["libs/ui/material/src/index.ts"],
"@perun-web-apps/perun/services": ["libs/perun/services/src/index.ts"],
"@perun-web-apps/perun/models": ["libs/perun/models/src/index.ts"],
"@perun-web-apps/perun/tokens": ["libs/perun/tokens/src/index.ts"],
"@perun-web-apps/perun/utils": ["libs/perun/utils/src/index.ts"],
"@perun-web-apps/perun/urns": ["libs/perun/urns/src/index.ts"],
"@perun-web-apps/ui/alerts": ["libs/ui/alerts/src/index.ts"],
"@perun-web-apps/perun/openapi": ["libs/perun/openapi/src/index.ts"],
"@perun-web-apps/config": ["libs/config/src/index.ts"],
"@perun-web-apps/general": ["libs/general/src/index.ts"],
"@perun-web-apps/perun/components": [
"libs/perun/components/src/index.ts"
],
"@perun-web-apps/perun/facility-services-config": [
"libs/perun/facility-services-config/src/index.ts"
],
"@perun-web-apps/config/table-config": [
"libs/config/table-config/src/index.ts"
],
"@perun-web-apps/perun/pipes": ["libs/perun/pipes/src/index.ts"],
"@perun-web-apps/perun/animations": [
"libs/perun/animations/src/index.ts"
],
"@perun-web-apps/perun/directives": [
"libs/perun/directives/src/index.ts"
],
"@perun-web-apps/dialogs": ["libs/dialogs/src/index.ts"],
"@perun-web-apps/perun/dialogs": ["libs/perun/dialogs/src/index.ts"],
"@perun-web-apps/perun/session-expiration": [
"libs/perun/session-expiration/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}