Skip to content

Commit

Permalink
feat: add jsconfig.json for module resolution
Browse files Browse the repository at this point in the history
Introduce jsconfig.json to configure module resolution paths. This setup
enables more straightforward imports by defining aliases for components,
pages, utilities, and styles directories, improving code readability and
maintainability.
  • Loading branch information
chessurisme committed Jun 3, 2024
1 parent 1e5ef85 commit afbb7f9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@components/*": ["src/components/*"],
"@pages/*": ["src/pages/*"],
"@utilities/*": ["src/utilities/*"],
"@styles/*": ["src/styles/*"]
}
}
}

0 comments on commit afbb7f9

Please sign in to comment.