-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.base.json
81 lines (81 loc) · 3.03 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@panng-stream-shared/utilities/rx": [
"libs/shared/utilities/rx/src/index.ts"
],
"@panng-stream-shared/utilities/types": [
"libs/shared/utilities/types/src/index.ts"
],
"@panng-stream-demo/shell": ["libs/demo/shell/src/index.ts"],
"@panng-stream-demo/auth/data-access": [
"libs/demo/auth/data-access/src/index.ts"
],
"@panng-stream-api/data-access": ["libs/api/data-access/src/index.ts"],
"@panng-stream-api/post": ["libs/api/post/src/index.ts"],
"@panng-stream-api/user": ["libs/api/user/src/index.ts"],
"@panng-stream-demo/sdk": ["libs/demo/sdk/src/index.ts"],
"@panng-stream-api/common": ["libs/api/common/src/index.ts"],
"@panng-stream-api/auth": ["libs/api/auth/src/index.ts"],
"@panng-stream-api/config": ["libs/api/config/src/index.ts"],
"@panng-stream-api/security": ["libs/api/security/src/index.ts"],
"@panng-stream-api/comment": ["libs/api/comment/src/index.ts"],
"@panng-stream-demo/auth/util": ["libs/demo/auth/util/src/index.ts"],
"@panng-stream-demo/post/data-access": [
"libs/demo/post/data-access/src/index.ts"
],
"@panng-stream-demo/post/post-list/ui": [
"libs/demo/post/post-list/ui/src/index.ts"
],
"@panng-stream/demo/auth/features/shell": [
"libs/demo/auth/features/shell/src/index.ts"
],
"@panng-stream/demo/auth/features/sign-in": [
"libs/demo/auth/features/sign-in/src/index.ts"
],
"@panng-stream/demo/auth/features/sign-up": [
"libs/demo/auth/features/sign-up/src/index.ts"
],
"@panng-stream/demo/auth/ui/auth-wrapper": [
"libs/demo/auth/ui/auth-wrapper/src/index.ts"
],
"@panng-stream/demo/post/features/details": [
"libs/demo/post/features/details/src/index.ts"
],
"@panng-stream/demo/post/features/list": [
"libs/demo/post/features/list/src/index.ts"
],
"@panng-stream/demo/post/ui/list-item": [
"libs/demo/post/ui/list-item/src/index.ts"
],
"@panng-stream/demo/shared/ui/destroyable": [
"libs/demo/shared/ui/destroyable/src/index.ts"
],
"@panng-stream/demo/shared/ui/post-header": [
"libs/demo/shared/ui/post-header/src/index.ts"
],
"@panng-stream/demo/shared/ui/forms/textarea-control": [
"libs/demo/shared/ui/forms/textarea-control/src/index.ts"
],
"@panng-stream/demo/shared/ui/demo-template": [
"libs/demo/shared/ui/demo-template/src/index.ts"
]
},
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "tmp"]
}