properly load typescript lsp in subpaths
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-07-08 18:18:45 -04:00
parent 31974e1b6e
commit 57cd48c53e
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -179,6 +179,7 @@ export namespace LSPClient {
l.info("shutting down") l.info("shutting down")
connection.end() connection.end()
connection.dispose() connection.dispose()
input.server.process.kill()
l.info("shutdown") l.info("shutdown")
}, },
} }
+1 -1
View File
@@ -75,7 +75,7 @@ export namespace LSPServer {
notif.dispose() notif.dispose()
resolve() resolve()
}) })
await lsp.notify.open({ path: hint }) await lsp.notify.open({ path: path.join(lsp.root, hint) })
}) })
}, },
} }