What is the meaning of incremental in tsconfig.json?
Asked Answered
B

1

10

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

image

Bandmaster answered 9/10, 2019 at 4:35 Comment(1)
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. typescriptlang.org/docs/handbook/release-notes/…Demonolater
U
8

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

Unrepair answered 9/10, 2019 at 5:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.