Skip to content

Commit

Permalink
fix: import aliases (#104)
Browse files Browse the repository at this point in the history
Fixed $libs and $components aliases in imports
  • Loading branch information
rlaferla authored Jan 22, 2024
1 parent edbe0b6 commit 581060a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"paths": {
"$components":["./src/components"],
"$components/*":["./src/components/*"],
"$lib":["./src/lib"],
"$lib/*":["./src/lib/*"],
},
"target": "ESNext",
"allowJs": true,
"checkJs": true,
Expand Down

0 comments on commit 581060a

Please sign in to comment.