Moving code to src/ caused VSCode errors about imports
Hi.
I just started a new project, and at first I had all my code in root workspace directory, together with deno.json. I had subdirectories also, but the main files were at the top. Everything worked just fine. Now I decided to move all code to
src
directory and it caused errors like this popping up in VSCode:
Now this errors is from src/db/index.ts
. When I move it back to db/index.ts
, it doesn't complain. Deno runs it just fine anyway, it's just the VSCode part that seems to not get it.2 Replies
I managed to resolve it. Adding
"deno.importMap": "./deno.json"
to .vscode/settings.json
fixed the issue, but I'm not sure why that is necessary.I am not sure what the issue could be, my guess is that is looks for a particular entry point and by adding src/ you are adding an extra layer
There should probably be something about it in the docs