TSConfig
tsBuildInfoFile
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.
The default depends on a combination of other settings:
- If
outFileis set, the default is<outFile>.tsbuildinfo. - If
rootDirandoutDirare set, then the file is<outDir>/<relative path to config from rootDir>/<config name>.tsbuildinfoFor example, ifrootDirissrc,outDirisdest, and the config is./tsconfig.json, then the default is./tsconfig.tsbuildinfoas the relative path fromsrc/to./tsconfig.jsonis../. - If
outDiris set, then the default is<outDir>/<config name>.tsbuildInfo - Otherwise, the default is
<config name>.tsbuildInfo