When compiling or building a project with references programmatically, I make use of the ts.createSolutionBuilder
API.
The challenge I face is that in my specific scenario, I do not have individual tsconfig.json files stored on the filesystem for each package. Instead, the tsconfig.json is dynamically generated based on other factors.
While it is possible to provide compiler options to this method, it only considers the tsconfig.json file from the root directory which includes all the project references data. How can I pass compiler options specific to each project/package?