Is there a specific keyword I should search for to learn how to set up my Angular app to load internal modules using the following syntax:
import { MyModule } from 'cool/short/path';
instead of:
import { MyModule } from './../../../modules/MyModle/my-module';
I came across a tutorial that explains how to configure the entire app to use absolute path markings, but is it possible to configure individual modules in this way? One example that comes to mind is Angular modules, which are always referenced with @
and the same path from any project location.