diff --git a/src/compiler/sys.ts b/src/compiler/sys.ts index 2097475758b..67beed19363 100644 --- a/src/compiler/sys.ts +++ b/src/compiler/sys.ts @@ -608,6 +608,9 @@ namespace ts { // Use notifications from FS to watch with falling back to dynamic watch file dynamicPollingWatchFile = createDynamicPriorityPollingWatchFile(nodeSystem); return createWatchFileUsingDynamicWatchFile(dynamicPollingWatchFile); + case "UseFsEventsOnParentDirectory": + // Use notifications from FS to watch with falling back to fs.watchFile + return createNonPollingWatchFile(); } return useNonPollingWatchers ? createNonPollingWatchFile() :