vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
MIT License
165
stars
62
forks
source link
Doesn't pick up default export when it there is an export of the same name in the same file #100
A library we work with has this common pattern:
SomeComponent.tsx
:Now when I type:
and trigger this plugin I get the popup that has the correct file, but only one entry, and when I import I get:
While I usually want:
I think both options should be in the drop-down in this case.