We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My src folder has the following structure:
app --feature1 --feature2 ----shared ------components --------uniqueComponent1 --shared ----components ------sharedComponent1 ----services main.ts system-config.ts tsconfig.json typings.d.ts
If I am in feature2/shared/components/uniqueComponent1, and I want to import sharedComponent1,
is there a way I can do this without having to do ../../../ many times and instead do something like
import { SharedComponent1 } from 'app/shared/components/sharedComponent1';
Please let me know.
The text was updated successfully, but these errors were encountered:
There will be. See here: #1465
Sorry, something went wrong.
@clydin does the typescript paths only work in typescript 2?
This issue is being tracked in #1465.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
My src folder has the following structure:
If I am in feature2/shared/components/uniqueComponent1, and I want to import sharedComponent1,
is there a way I can do this without having to do ../../../ many times and instead do something like
import { SharedComponent1 } from 'app/shared/components/sharedComponent1';
Please let me know.
The text was updated successfully, but these errors were encountered: