-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
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
Provide --build/--incremental APIs for build tools #29978
Comments
This would be great. The TensorFlow.js team is using karma-typescript for testing in the browser, and we can't migrate to composite build yet since the compiler API doesn't work for composite. const tsconfig = ; // parsed ts config
// tsconfig.fileNames includes only the files mentioned in "include".
ts.createProgram(tsconfig.fileNames, tsconfig.options, compilerHost);
// Failed since `fileNames` doesn't contain files from "referenced projects" |
This issue now also tracks |
Closed by #31432 |
Thanks for the new APIs, @sheetalkamat. Is there a separate issue open for updating the docs? I know, personally, I've found the docs around the compiler APIs (as opposed to the language itself) to be rather lacking and often out-of-date. |
Not that I am aware of. @DanielRosenwasser do you want me to keep this open or create new issue for documentation. |
@MLoughry @sheetalkamat see #31849. |
Hmm. This issue has been labeled with 3.5, ... and also has just been moved in the roadmap from 3.6 to 3.5 ... but I cannot find e.g. So what's going on? /cc @DanielRosenwasser |
When we added support for composite projects and implemented
--build
mode (#3469, #25600), we only provided a few APIs, but not enough that 3rd party tools could defer to TypeScript's understanding of composite projects to instruct these tools how to build intelligently.We'd like to provide some stable API so tools like gulp and Webpack can easily operate over composite projects with project references.
The text was updated successfully, but these errors were encountered: