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