blob: 5f21d32ca34acf94b06badeda266395f5ecac211 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
local path = require "mason-core.path"
---@param install_dir string
return function(install_dir)
return {
cmd = {
"node",
path.concat { install_dir, "node_modules", "perlnavigator-server", "out", "server.js" },
"--stdio",
},
}
end
|