The relative imports in this project are a nightmare.
I would like to utilize directory aliasing and have @ point to the src directory, this should make things look much better as well as simple imports :)
If I recall correctly this is a typescript config option.
I think Vue + TS does this by default if a reference is needed.
Acceptance
Remove the import hell
No more: import Something from '../../../library/Something';
The relative imports in this project are a nightmare. I would like to utilize directory aliasing and have
@
point to thesrc
directory, this should make things look much better as well as simple imports :)If I recall correctly this is a typescript config option.
I think Vue + TS does this by default if a reference is needed.
Acceptance
import Something from '../../../library/Something';
import Something from '@/library/Something';