Fixes go to definition and intellisense for @ imports that are everywher

This commit is contained in:
Matt Sykes 2026-03-06 17:34:28 -05:00
parent 9731526eb1
commit 158c4a6f35

9
jsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"]
}