TypeScript's incremental compilation (tsc --incremental / composite projects) emits *.tsbuildinfo files that cache build state and shouldn't be committed. Add *.tsbuildinfo as an entry to the root .gitignore.
Acceptance: .gitignore contains a line *.tsbuildinfo.
Verify: grep -c '^\*\.tsbuildinfo$' .gitignore returns 1 (not 0, not >1).
TypeScript's incremental compilation (
tsc --incremental/compositeprojects) emits*.tsbuildinfofiles that cache build state and shouldn't be committed. Add*.tsbuildinfoas an entry to the root.gitignore.Acceptance:
.gitignorecontains a line*.tsbuildinfo.Verify:
grep -c '^\*\.tsbuildinfo$' .gitignorereturns1(not 0, not >1).