ts - enable use code watcher by default (#213450)

This commit is contained in:
Benjamin Pasero
2024-05-25 12:48:33 +02:00
committed by GitHub
parent 3e8b60f276
commit 2188b46e88
4 changed files with 5 additions and 8 deletions

View File

@@ -117,7 +117,7 @@ export interface TypeScriptServiceConfiguration {
readonly enableProjectDiagnostics: boolean;
readonly maxTsServerMemory: number;
readonly enablePromptUseWorkspaceTsdk: boolean;
readonly useVsCodeWatcher: boolean;
readonly useVsCodeWatcher: boolean; // TODO@bpasero remove this setting eventually
readonly watchOptions: Proto.WatchOptions | undefined;
readonly includePackageJsonAutoImports: 'auto' | 'on' | 'off' | undefined;
readonly enableTsServerTracing: boolean;