Skip to content

Commit

Permalink
chore(tsc): @/*src/* を読み込めるようにaliasを設定した
Browse files Browse the repository at this point in the history
  • Loading branch information
mii288 committed Aug 13, 2024
1 parent 822ad6f commit 6148ab4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"extends": "astro/tsconfigs/strict",
"exclude": ["dist"]
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}

1 comment on commit 6148ab4

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.