I have a submodule project with lots of absolute imports such as import { SharedModule } from 'app/shared/shared.module';.
As a result it tries to reach modules from the root project. Is there any way to make those imports work only inside the inner repository's folder?
I can't change the inner project.