I'd like to import a module from a directory using a custom decorator/annotation like @material-ui/core
module, like the example below :
Instead of classic import
import class1 from '../../../../Services/module1';
I'd like to use this syntaxe
import class1 from '@Services/module1';
Thank's for your help !