caridy (2015-02-19T06:31:11.000Z)
d at domenic.me (2015-03-03T21:06:28.718Z)
Yes, that syntax is incorrect and confusing. There was an overside from our end to provide a way to re-export only the default export from another module, and this is something we plan to revisit for ES7/2016. Probably something like this: export default from “foo”; this is just sugar for: export {default} from “foo”; which is perfectly supported in ES6, including the ability to rename it: export {default as something} from “foo”;