We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93c13ce commit 95b2630Copy full SHA for 95b2630
1 file changed
src/compiler/sys.ts
@@ -608,6 +608,9 @@ namespace ts {
608
// Use notifications from FS to watch with falling back to dynamic watch file
609
dynamicPollingWatchFile = createDynamicPriorityPollingWatchFile(nodeSystem);
610
return createWatchFileUsingDynamicWatchFile(dynamicPollingWatchFile);
611
+ case "UseFsEventsOnParentDirectory":
612
+ // Use notifications from FS to watch with falling back to fs.watchFile
613
+ return createNonPollingWatchFile();
614
}
615
return useNonPollingWatchers ?
616
createNonPollingWatchFile() :
0 commit comments