I have two files :
- app.js
- module.js
app.js will have expression,
import 'foo' from './module'
//use foo..
and module.js will have,
export default {expression}
But it is not working. I'm currently using Node 7.0.0 I tries using Webpack with babel-loader and es2015 preset but not working.
