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.
Is there a chance we can get this to work with flow types? Flow types are exactly the same as javascript its just export type { blah } inestead of export { blah }. And the reverse import type { blah } from '....'.
It sounds like the infrastructure would be in-place for this already thanks to the typescript support? Do any of the core contributors want to chime in here?
Hi there,
Is there a chance we can get this to work with flow types? Flow types are exactly the same as javascript its just
export type { blah }
inestead ofexport { blah }
. And the reverseimport type { blah } from '....'
.