feat(lsp): add extension inference and improve diagnostics

🤖 Generated with assistance of OhMyOpenCode
This commit is contained in:
YeonGyu-Kim
2026-03-31 17:33:42 -07:00
parent 3c77c048dd
commit 94a2b8ec2c
4 changed files with 186 additions and 26 deletions
+3
View File
@@ -52,6 +52,9 @@ class LSPServerManager {
this.cleanupInterval = setInterval(() => {
this.cleanupIdleClients();
}, 60000);
if (typeof this.cleanupInterval === "object" && "unref" in this.cleanupInterval) {
this.cleanupInterval.unref();
}
}
private cleanupIdleClients(): void {