7

As exploring tsconfig.json file i stuck on what is exact meaning of incremental in tsconfig.json

image

Panther 404
  • 132
  • 1
  • 6
  • Build option to save time for following builds of the project. Saves information for the last build to save time at the next build for the given changes. https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html – Bernhard Oct 09 '19 at 04:40

1 Answers1

6

Enable incremental compilation by reading/writing information from prior compilations to a file on disk. This file is controlled by the --tsBuildInfoFile flag.

Please refer compiler options : https://www.typescriptlang.org/docs/handbook/compiler-options.html

Swapnil N
  • 179
  • 5