I received the same error, but my webpack/babel configs looked correct. By trial and error, I replaced export myFunction with export default myFunction and the error got resolved.
Later, I realized that the correct way of exporting is export {myFunction}. I implemented it and everything works fine.