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
Hello 👋
With TypeScript project references, when we build a single project, all its referenced dependencies are built beforehand when using tsc --build.
tsc --build
My issue is that for the dependencies, tsc-alias isn't applied as I assume TypeScript is only applying tsc.
tsc-alias
tsc
So it would be great if tsc-alias could follow each references listed in tsconfig.json and resolve their paths as well so using:
tsconfig.json
"build": "tsc --build && tsc-alias"
would update the whole graph of projects.
The text was updated successfully, but these errors were encountered:
is this a feature that is getting worked on?
Sorry, something went wrong.
@lvsanche We are not working on this feature yet but if you want you can contribute. THANKS
No branches or pull requests
Hello 👋
With TypeScript project references, when we build a single project, all its referenced dependencies are built beforehand when using
tsc --build
.My issue is that for the dependencies,
tsc-alias
isn't applied as I assume TypeScript is only applyingtsc
.So it would be great if
tsc-alias
could follow each references listed intsconfig.json
and resolve their paths as well so using:would update the whole graph of projects.
The text was updated successfully, but these errors were encountered: