Closed
Description
- VSCode Version: 1.31.0
- OS Version: Windows 10
Steps to Reproduce:
- Unpack the attached source test-app.zip
- run
npm install
- Open app.module.ts file
- Remove
NgModule
import (the@NgModule
will be highlighted with an error) - Place cursor on the
@NgModule
. Here expected behavior is that the light bulb would appear and suggest to add missing import. In reality nothing happens. I am still able to add import manually but it's impossible to use auto import feature for this. When entering import manually Intellisense works without any problems.
This might seem like a minor problem but the example is just a small extract from a big project. It seems that VSCode (or TS server) is not checking for possible typings in node_modules
. In the end we have to add imports manually everywhere which is very time consuming and simply kills productivity.
Does this issue occur when all extensions are disabled?: Yes