Skip to content

Commit

Permalink
chore: add static path to tsconfig (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroschmitz authored Oct 10, 2021
1 parent c2253c3 commit 1bca16d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
"@/*": ["./src/*"],
"@/static/*": ["./static/*"]
}
},
"exclude": ["node_modules"],
Expand Down

1 comment on commit 1bca16d

@vercel
Copy link

@vercel vercel bot commented on 1bca16d Oct 10, 2021

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.