Skip to content

Commit 6390aaa

Browse files
committed
chore(tsconfig): add renderer path alias to module resolution
- Add @renderer/* path alias mapping to src/renderer/* directory - Improve module resolution for renderer process imports - Align with existing path alias patterns for main and shared modules
1 parent 6995a6d commit 6390aaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tsconfig.main.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"paths": {
1515
"@/*": ["src/*"],
1616
"@shared/*": ["src/shared/*"],
17-
"@main/*": ["src/main/*"]
17+
"@main/*": ["src/main/*"],
18+
"@renderer/*": ["src/renderer/*"]
1819
}
1920
},
2021
"include": ["src/main/**/*", "src/shared/**/*"]

0 commit comments

Comments
 (0)