Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: pass watch options to watchFile and watchDirectory
The options are needed so that the server respects the `WatchOptions` provided by users in their tsconfig.json. ```ts export interface WatchOptions { watchFile?: WatchFileKind; watchDirectory?: WatchDirectoryKind; fallbackPolling?: PollingWatchKind; synchronousWatchDirectory?: boolean; excludeDirectories?: string[]; excludeFiles?: string[]; [option: string]: CompilerOptionsValue | undefined; } ``` fix #636
- Loading branch information