Some of the TypeScript projects that I'm working with are using project references and some not. That means in some repositories I have to compile with tsc --build and in some not. As far as I understood the docs it is possible to enable --build with this configuration
flags = {
build = true,
},
but then I have build enabled for all other projects as well. How can I handle multiple projects with different configurations?
PS: the same for noEmit. In some projects I want to have something emitted and in some not.
Some of the TypeScript projects that I'm working with are using project references and some not. That means in some repositories I have to compile with
tsc --buildand in some not. As far as I understood the docs it is possible to enable--buildwith this configurationbut then I have
buildenabled for all other projects as well. How can I handle multiple projects with different configurations?PS: the same for
noEmit. In some projects I want to have something emitted and in some not.