launch.json 311 B

123456789101112131415
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "attach",
  7. "name": "Attach to jest",
  8. // Usage:
  9. // Open the parent directory in VSCode
  10. // Run \`jlpm test:debug:watch\` in a terminal
  11. // Run this debugging task
  12. "port": 9229
  13. }
  14. ]
  15. }