-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (29 loc) · 944 Bytes
/
tsconfig.json
File metadata and controls
30 lines (29 loc) · 944 Bytes
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
{
"files": [],
"references": [
{ "path": "./apps/frontend/tsconfig.json" },
{ "path": "./apps/backend/tsconfig.json" },
{ "path": "./packages/components" },
{ "path": "./packages/lib" }
],
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./packages/*/src"],
"@openchat/components": ["./packages/components/src"],
"@openchat/lib": ["./packages/lib/src"],
"@openchat/types": ["./packages/types/src"],
// "web/*": ["./apps/frontend/src/*"],
"packages/ui": ["./packages/components/src"],
"packages/ui/*": ["./packages/components/src/ui/*"],
"packages/lib": ["./packages/lib/src"],
"packages/lib/*": ["./packages/lib/src/*"],
"packages/lib/utils": ["./packages/lib/src/utils"],
"packages/hooks": ["./apps/frontend/src/hooks"],
"server/*": ["./apps/backend/*"]
}
}
}