egg启动调试launch.json

{
"configurations": [
{
"name": "Launch Egg",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"runtimeArgs": [ "run", "debug" ],
"console": "integratedTerminal",
"restart": true,
"autoAttachChildProcesses": true
}
]
}

你可能感兴趣的:(egg启动调试launch.json)