Babel plugin to resolve
import module from 'path/to/module'
into
import module from 'path/to/module/module.js'
npm install babel-plugin-directory-named-module --save-dev
Edit .babelrc
{
"plugins": [
"directory-named-module"
]
}
Another babel plugin to save your time and keyboard :)
JavaScriptMIT