launch.json 685 B

123456789101112131415161718192021
  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": "Docker: Attach to Node",
  9. "type": "node",
  10. "request": "attach",
  11. "port": 9229,
  12. "address": "localhost",
  13. "localRoot": "${workspaceFolder}/backend",
  14. "remoteRoot": "/opt/app/",
  15. "autoAttachChildProcesses": true,
  16. "restart": true,
  17. "continueOnAttach": true,
  18. "smartStep": true
  19. }
  20. ]
  21. }