For what keyword should I look to learn how to configure my Angular app to be able to load my internal modules with following:
import { MyModule } from 'cool/short/path';
instead of:
import { MyModule } from './../../../modules/MyModle/my-module';
I went through some tutorial mentioning how to configure whole app to use some kind of absolute path marking, but is it possible to configure single module in such manner? As a notable example I'd mention Angular modules, which are always referred with @
and same path from whatever project location.