Skip to content

Commit 998d878

Browse files
committed
new: Enable incremental compiler option.
1 parent 4900c46 commit 998d878

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

packages/tsconfig/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Extend the config from your root `tsconfig.json`.
3333
- Targets `es2022` (since we only type check).
3434
- Supports project references through the `tsconfig.projects.json` config.
3535
- Enables declaration emitting.
36+
- Enables incremental compilation.
3637
- Supports React through the `tsconfig.react.json` config.
3738
- Enables the `dom` lib.
3839
- Sets JSX transform to `react`.

packages/tsconfig/tsconfig.projects.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"declaration": true,
77
"declarationMap": true,
88
"emitDeclarationOnly": true,
9-
"noEmitOnError": false
9+
"incremental": true,
10+
"noEmitOnError": true
1011
}
1112
}

0 commit comments

Comments
 (0)