Skip to content

Clarify tsBuildInfoFile isn't a folder #2303

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

Merged
merged 1 commit into from
May 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
display: "TS Build Info File"
oneline: "Specify the folder for .tsbuildinfo incremental compilation files."
oneline: "The file to store `.tsbuildinfo` incremental build information in."
---

This setting lets you specify a file for storing incremental compilation information as a part of composite projects which enables faster
building of larger TypeScript codebases. You can read more about composite projects [in the handbook](/docs/handbook/project-references.html).

This option offers a way to configure the place where TypeScript keeps track of the files it stores on the disk to
indicate a project's build state — by default, they are in the same folder as your emitted JavaScript.
By default it is in the same folder as your emitted JavaScript and has a `.tsbuildinfo` file extension.
The default file name is based on the `outFile` option or your tsconfig file name.