Build modular application with npm local modules
Arnaud Rinquin
8610
For Babel there’s a plugin: babel-root-import: https://github.com/michaelzoidl/babel-root-import
So you can import modules with project root relative path like:
import Model from '~/src/js/Model';
instead of:
import Model from '../../../Model'