I am trying to export a es6 module in header.js:
header.js
export default { setHeaderHighlight: function (index) { // do somethings } }; <
I also have the problem, and I wrote a webpack plugin to resolve it. I didn't really know if there is a nicer way to handle it, but it works.
The module in node_modules also works well.