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.
1 parent db54328 commit 1e8a3f6Copy full SHA for 1e8a3f6
packages/plugin-dts/src/tsc.ts
@@ -260,7 +260,7 @@ export async function emitDts(
260
`DTS generated in ${getTimeCost(start)} ${color.gray(`(${name})`)}`,
261
);
262
} else {
263
- // watch mode
+ // watch mode, can also deal with incremental build
264
if (!build) {
265
const host = ts.createWatchCompilerHost(
266
configPath,
@@ -273,7 +273,7 @@ export async function emitDts(
273
274
ts.createWatchProgram(host);
275
276
- // incremental build with build project references
+ // incremental build watcher with build project references
277
const host = ts.createSolutionBuilderWithWatchHost(
278
system,
279
createProgram,
0 commit comments