Is there any way to use namespace for custom paths in Angular 5? Currently I use
import { AuthService } from './../../modules/auth/auth.service';
What I am trying to achieve is using @module
or custom @name
for a particular path. The code should look like below and be usable in every folder level
import { AuthService } from '@modules/auth/auth.service';