Frontend-Layers / html-base

Runtime environment for comfortable handcoding frontend tasks with variative dependencies and useful open source tools
https://html-base-intro.netlify.app/
MIT License
3 stars 2 forks source link

Import aliases to avoide hell with relative path #1

Closed andreymatin closed 4 years ago

andreymatin commented 4 years ago

Rollup.js improvements for importing modules more easily.

Instead

import Module from '../../../module';

we will use the alias:

import Module from 'App/module';