typescript 5.6.0-dev.20240627 → 5.6.0-dev.20240629

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2651,6 +2651,7 @@ declare namespace ts {
2651
2651
  interface ServerHost extends System {
2652
2652
  watchFile(path: string, callback: FileWatcherCallback, pollingInterval?: number, options?: WatchOptions): FileWatcher;
2653
2653
  watchDirectory(path: string, callback: DirectoryWatcherCallback, recursive?: boolean, options?: WatchOptions): FileWatcher;
2654
+ preferNonRecursiveWatch?: boolean;
2654
2655
  setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;
2655
2656
  clearTimeout(timeoutId: any): void;
2656
2657
  setImmediate(callback: (...args: any[]) => void, ...args: any[]): any;
@@ -9591,6 +9592,7 @@ declare namespace ts {
9591
9592
  setTimeout?(callback: (...args: any[]) => void, ms: number, ...args: any[]): any;
9592
9593
  /** If provided, will be used to reset existing delayed compilation */
9593
9594
  clearTimeout?(timeoutId: any): void;
9595
+ preferNonRecursiveWatch?: boolean;
9594
9596
  }
9595
9597
  interface ProgramHost<T extends BuilderProgram> {
9596
9598
  /**