Open jgoux opened 1 year ago
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.
is this a feature that is getting worked on?
@lvsanche We are not working on this feature yet but if you want you can contribute. THANKS
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.