Would it be possible to have python style import statements where the module you're importing from comes first? That way, using an IDE you can autocomplete the module's exports.
So, instead of having import {x} from "module" you would have from "module" import {x}.
Right now it is possible to get autocomplete if you go back to the curly braces, but sometimes it's a bit annoying. I know that python allows you to import with both ways, so my question is would there be any reason that javascript can't implement this?
That's unfortunate. I actually found the link you've posted to be very helpful, the snippet suggestion seems like it would solve the problem. Do you have any idea why syntax we have now was chosen?