-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
88 lines (88 loc) · 2.98 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@angular-slack/auth/data-access": ["libs/auth/data-access/src/index.ts"],
"@angular-slack/chat-message": ["libs/shared/ui-message/src/index.ts"],
"@angular-slack/client/data-access": [
"libs/client/data-access/src/index.ts"
],
"@angular-slack/create-channel": [
"libs/channels/feature-create-channel/src/index.ts"
],
"@angular-slack/data-access-channels": [
"libs/channels/data-access-channels/src/index.ts"
],
"@angular-slack/data-access-contacts": [
"libs/contacts/data-access-contacts/src/index.ts"
],
"@angular-slack/data-access-messages": [
"libs/chat/data-access-messages/src/index.ts"
],
"@angular-slack/data-access-threads": [
"libs/threads/data-access-threads/src/index.ts"
],
"@angular-slack/edit-channel": [
"libs/channels/feature-edit-channel/src/index.ts"
],
"@angular-slack/feature-header-toolbar": [
"libs/header-toolbar/feature-header-toolbar/src/index.ts"
],
"@angular-slack/feature-shell": [
"libs/client/feature-shell/src/index.ts"
],
"@angular-slack/file-preview": [
"libs/shared/ui-file-preview/src/index.ts"
],
"@angular-slack/message-editor": [
"libs/shared/ui-message-editor/src/index.ts"
],
"@angular-slack/pipes/collection-commas": [
"libs/shared/pipes/collection-commas/src/index.ts"
],
"@angular-slack/slack-api": [
"libs/shared/data-access/slack-api/src/index.ts"
],
"@angular-slack/tab-rail/feature-tab-rail": [
"libs/tab-rail/feature-tab-rail/src/index.ts"
],
"@angular-slack/thread-card": [
"libs/threads/ui-thread-card/src/index.ts"
],
"@angular-slack/chat/thread-chat-view": [
"libs/chat/feature-thread-chat-view/src/index.ts"
],
"@angular-slack/ui-store": [
"libs/shared/data-access/ui-store/src/index.ts"
],
"@angular-slack/utils": ["libs/shared/utils/src/index.ts"],
"@angular-slack/chat/feature-channel-chat-view": [
"libs/chat/feature-channel-chat-view/src/index.ts"
],
"@angular-slack/chat/feature-primary-view": [
"libs/chat/feature-primary-view/src/index.ts"
],
"@angular-slack/threads/feature-threads": [
"libs/threads/feature-threads/src/index.ts"
],
"@angular-slack/workspace/feature-shell": [
"libs/workspace/feature-shell/src/index.ts"
],
"@env/*": ["apps/angular-slack/src/environments/*"]
}
},
"exclude": ["node_modules", "tmp"]
}