(private options: DevWatchOptions)
| 91 | private lastSyncedSourceFiles: Set<string> | null = null |
| 92 | |
| 93 | constructor(private options: DevWatchOptions) { |
| 94 | this.syncer = new FileSyncer() |
| 95 | this.debounceQueue = new DebounceQueue((changes) => this.rebuild(changes)) |
| 96 | } |
| 97 | |
| 98 | async start(): Promise<void> { |
| 99 | // Validate watch path |