launch.json 449 B

12345678910111213141516171819
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "核心服务",
  6. "type": "node",
  7. "request": "launch",
  8. "cwd": "${workspaceRoot}",
  9. "runtimeExecutable": "npm",
  10. "windows": { "runtimeExecutable": "npm.cmd" },
  11. "runtimeArgs": ["run", "debug"],
  12. "console": "integratedTerminal",
  13. "protocol": "auto",
  14. "restart": true,
  15. "port": 9229,
  16. "autoAttachChildProcesses": true
  17. }
  18. ]
  19. }