We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
incremental
1 parent 4900c46 commit 998d878Copy full SHA for 998d878
2 files changed
packages/tsconfig/README.md
@@ -33,6 +33,7 @@ Extend the config from your root `tsconfig.json`.
33
- Targets `es2022` (since we only type check).
34
- Supports project references through the `tsconfig.projects.json` config.
35
- Enables declaration emitting.
36
+ - Enables incremental compilation.
37
- Supports React through the `tsconfig.react.json` config.
38
- Enables the `dom` lib.
39
- Sets JSX transform to `react`.
packages/tsconfig/tsconfig.projects.json
@@ -6,6 +6,7 @@
6
"declaration": true,
7
"declarationMap": true,
8
"emitDeclarationOnly": true,
9
- "noEmitOnError": false
+ "incremental": true,
10
+ "noEmitOnError": true
11
}
12
0 commit comments