16 lines
346 B
Lua
16 lines
346 B
Lua
|
local dap = require("dap")
|
||
|
|
||
|
dap.adapters["pwa-node"] = {
|
||
|
type = "server",
|
||
|
host = "127.0.0.1",
|
||
|
port = "${port}",
|
||
|
executable = {
|
||
|
command = "node",
|
||
|
args = {
|
||
|
vim.fn.stdpath("data") ..
|
||
|
"/mason/packages/js-debug-adapter/js-debug/src/dapDebugServer.js",
|
||
|
"${port}",
|
||
|
},
|
||
|
},
|
||
|
}
|