-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1 KB
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
{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.web.json"
}
],
"include": [
"src", // Your source code
"env.d.ts" // Add this if not implicitly included
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@renderer/*": ["src/renderer/src/*"],
"@shared/*": ["src/shared/*"],
"@/*": ["src/renderer/src/*"],
"@extensions/*": ["src/renderer/src/cm-extensions/*"],
"@store/*": ["src/renderer/src/store/*"],
"@components/*": ["src/renderer/src/components/*"],
"@components": ["src/renderer/src/components"],
"@hooks/*": ["src/renderer/src/hooks/*"],
"@hooks": ["src/renderer/src/hooks"],
"@utils/*": ["src/renderer/src/components/lib/utils/*"],
"@utils": ["src/renderer/src/components/lib/utils"],
"@services/*": ["src/renderer/src/services/*"],
"@lib": ["src/renderer/src/components/lib"],
"@lib/*": ["src/renderer/src/components/lib/*"]
}
}
}