我有一个(Botpress Framework v.10.51.1)机器人,我安装了一个 botpress 模块并链接到该机器人,我想使用 vscode 调试器调试 botpress 模块中的代码,
我将以下内容添加到我的 vs-code launch.json 并使用命令npm start --debug启动我的机器人
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"cwd": "${workspaceRoot}",
"port": 5859,
"program": "${workspaceRoot}/node_modules/botpress/bin/botpress",
"runtimeExecutable": "node",
"runtimeArgs": [
"--debug"
],
"args": [ "start" ],
"stopOnEntry": false
}
它仍然没有在 vscode 中启动调试器,我错过了什么?我该怎么做呢?