launch.json 627 B

123456789101112131415161718192021222324
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Launch Program",
  9. "program": "${workspaceFolder}/pdf.mjs",
  10. "request": "launch",
  11. "skipFiles": [
  12. "<node_internals>/**"
  13. ],
  14. "type": "node"
  15. },
  16. {
  17. "type": "node",
  18. "request": "attach",
  19. "name": "Attach NestJS WS",
  20. "port": 9229,
  21. "restart": true
  22. }
  23. ]
  24. }