There have been instances where we import a package like this
import { SharedModule } from '@shared/shared.module';
In this case, @shared refers to the folder within our project
/src/shared
I am trying to find a way to avoid importing my class using relative path approach with dots and slashes at the beginning, such as
import { SharedModule } from './shared/shared.module';
Is there a method to achieve this?