-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
47 lines (47 loc) · 2.04 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
{
"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": {
"@beep/auth": ["libs/pages/auth/src/index.ts"],
"@beep/authentication": ["libs/domains/authentication/src/index.ts"],
"@beep/channel": ["libs/domains/channel/src/index.ts"],
"@beep/contracts": ["libs/shared/contracts/src/index.ts"],
"@beep/discover": ["libs/pages/discover/src/index.ts"],
"@beep/events": ["libs/shared/events/src/index.ts"],
"@beep/friend": ["libs/domains/friend/src/index.ts"],
"@beep/layout": ["libs/pages/layout/src/index.ts"],
"@beep/message": ["libs/domains/message/src/index.ts"],
"@beep/messages": ["libs/shared/messages/src/index.ts"],
"@beep/notifications": ["libs/domains/notifications/src/index.ts"],
"@beep/pages/auth": ["libs/pages/auth/src/index.ts"],
"@beep/pages/channels": ["libs/pages/channels/src/index.ts"],
"@beep/pages/friends": ["libs/pages/friends/src/index.ts"],
"@beep/pages/layout": ["libs/pages/layout/src/index.ts"],
"@beep/responsive": ["libs/domains/responsive/src/index.ts"],
"@beep/routes": ["libs/shared/routes/src/index.ts"],
"@beep/server": ["libs/domains/server/src/index.ts"],
"@beep/settings": ["libs/pages/settings/src/index.ts"],
"@beep/store": ["libs/state/store/src/index.ts"],
"@beep/transmit": ["libs/shared/utils/src/index.ts"],
"@beep/ui": ["libs/shared/ui/src/index.ts"],
"@beep/user": ["libs/domains/user/src/index.ts"],
"@beep/utils": ["libs/shared/utils/src/index.ts"],
"@beep/voice": ["libs/domains/voice/src/index.ts"],
"@beep/pages/role-settings": ["libs/pages/role-settings/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}