Description
So, since we now have paste imports the only one missing feature is auto imports on the fly as you type, to summarize it best here is short description from WebStorm (which contains this feature):
Unambiguous imports on the fly. WebStorm adds import statements when you type your code or paste a fragment with a symbol that is not yet imported if there is only one source to import the symbol from.
I tried it and I do believe this is amazing DX boost especially who work without suggest widget and rely on inline suggestions, because you can type path.
and it auto imports path
from Node.js by adding at the top: import { path } from 'path'
or adds to an existing import. This saves a lot of time, because otherwise you're left with an quick fix or keyboard shortcut to import missing imports which is pain to do when you're typing fast and just want feedback as soon as possible and not to manually do additional action.
Activity