properly load typescript lsp in subpaths

This commit is contained in:
Dax Raad 2025-07-08 18:18:45 -04:00
parent 6de955847c
commit 4a878b88c0
2 changed files with 2 additions and 1 deletions

View file

@ -179,6 +179,7 @@ export namespace LSPClient {
l.info("shutting down")
connection.end()
connection.dispose()
input.server.process.kill()
l.info("shutdown")
},
}

View file

@ -75,7 +75,7 @@ export namespace LSPServer {
notif.dispose()
resolve()
})
await lsp.notify.open({ path: hint })
await lsp.notify.open({ path: path.join(lsp.root, hint) })
})
},
}