launch.json 193 B

123456789101112
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "attach",
  7. "name": "Attach to application",
  8. "skipFiles": ["<node_internals>/**"],
  9. "port": 9229
  10. }
  11. ]
  12. }