2
0

launch.json 248 B

1234567891011121314
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "attach",
  7. "name": "Attach NestJS WS",
  8. "port": 9229,
  9. "restart": true,
  10. "stopOnEntry": false,
  11. "protocol": "inspector"
  12. }
  13. ]
  14. }