I've had a look around google and could not find anything on it. I was wondering if it is possible to change the import path within my React project from this:
import {XComponent} from '../../../../components/XComponent';
To This:
import {XComponent} from '@components/XComponent';
So adding something in the project configuration to link a specific folder to a custom path in this case @components, which would really help clean up the imports.
Thanks