To programmatically compile/build a project references, I use the ts.createSolutionBuilder
API.
Problem is that in my use case I don't have the tsconfig.json file written in the filesystem per package. Instead, the tsconfig.json is calculated based on other criteria.
It's possible to pass the compiler options to this method, but it's only the tsconfig.json of the root that includes all the project references data. How do I pass the compiler-options per project/package?