Skip to content

Commit 8449614

Browse files
committed
feat(watch): add support for ts 2.9
1 parent 3541d24 commit 8449614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/compiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function runTypeScriptCompiler(logger, projectDir, options) {
6767
if (stringData !== "\x1Bc") {
6868
logger.info(stringData);
6969
}
70-
if (options.watch && stringData.toLowerCase().indexOf("compilation complete. watching for file changes.") !== -1 && !isResolved) {
70+
if (options.watch && stringData.toLowerCase().indexOf("watching for file changes.") !== -1 && !isResolved) {
7171
isResolved = true;
7272
resolve();
7373
}

0 commit comments

Comments
 (0)