launch.json 281 B

1234567891011121314
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "attach",
  7. "name": "Attach to dev:debug",
  8. "protocol": "inspector",
  9. "port": 4321,
  10. "restart": true,
  11. "cwd": "${workspaceRoot}"
  12. }
  13. ]
  14. }