我正在尝试使用VScode调试node + babel项目,但未成功。 我读了很多答案,没有人解决我的问题。 launch.json应该看起来如何?
我希望能够将调试器附加到正在运行的进程并启动程序。
Package.json
"build-babel": "npx babel src -d dist",
"start": "node dist/server.js",
"dev-start": "nodemon --inspect-brk --exec babel-node ./src/server.js",
launch.json
{
"type": "node",
"request": "launch",
"name": "Nodemon",
"runtimeExecutable": "${workspaceRoot}/node_modules/nodemon/bin/nodemon.js",
"args": [
"${workspaceRoot}/src/server.js"
],
"restart": true,
"protocol": "inspector",
"stopOnEntry": true,
},
{
"type": "node",
"request": "attach",
"name": "Attach to app",
"port": 9229,
"address": "localhost",
"sourceMaps": true,
"smartStep": true,
"restart": true
},
附加过程:附加但断点未命中“已设置但尚未绑定”
启动过程结果错误: 处理“启动”时出错:错误:产生未知的
谢谢