I'm creating a vscode extension (client language) which communicates with my own language server (LP) which is written by OCaml using the Language server protocol. Based on the lsp sample provided by vscode documentation, which I wasn't able to adapt to my case (server written in OCaml 'lsp-base.ml') what should I have for those lines of code:
let serverModule = context.asAbsolutePath(path.join('server', 'out', 'server.js'));
is it?
let serverModule = context.asAbsolutePath(path.join('XXX', 'XXXX', 'lsp-base.ml'));