Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 284 Bytes

typescript-incremental.md

File metadata and controls

19 lines (13 loc) · 284 Bytes

TypeScript Incremental

Design

Enable incremental option.

tsconfig.json

{
  "compilerOptions": {
    "incremental": true
  }
}

Rationale

Enables faster subsequent builds by saving and reading information about the project graph from the last compilation.