I have a typescript project that I edit via VSCode.
I'm using parcel, which means I have to "import" images into code. By default, typescript doesn't like that, so I've added a declarations.d.ts
file in my repository to allow these.
For some reason, VSCode only considers the declarations file when it's open in the editor. As soon as I close the file, these errors pop up again:
Cannot find module [...] or its corresponding type declarations ts(2307)
Here is a minimal reproductible example, as well as a screen recording of the issue
├── package.json
├── package-lock.json
└── src
├── assets
│ └── image.png
├── declarations.d.ts
├── index.html
└── main.ts
Stuff I tried
- restart typescript server
- quit and relaunch vscode
- reboot computer
- reset vscode settings
- update vscode
- clean reinstall vscode (including extensions and settigns)
Setup
- OS: Debian
- VScode: 1.83.1 x64, installed from .deb with apt
- Extensions: none
Just add this config file in your codebase as tsconfig.json