Don't save files on JS/TS server start
Fixes #96503 This workaround no longer seems neededpull/96996/head
parent
41ca01f942
commit
986a9c8bc9
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue