mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
Don't save files on JS/TS server start
Fixes #96503 This workaround no longer seems needed
This commit is contained in:
@@ -174,12 +174,9 @@ export default class TypeScriptServiceClientHost extends Disposable {
|
||||
private populateService(): void {
|
||||
this.fileConfigurationManager.reset();
|
||||
|
||||
// See https://github.com/Microsoft/TypeScript/issues/5530
|
||||
vscode.workspace.saveAll(false).then(() => {
|
||||
for (const language of this.languagePerId.values()) {
|
||||
language.reInitialize();
|
||||
}
|
||||
});
|
||||
for (const language of this.languagePerId.values()) {
|
||||
language.reInitialize();
|
||||
}
|
||||
}
|
||||
|
||||
private async diagnosticsReceived(
|
||||
|
||||
Reference in New Issue
Block a user