launch.json 429 B

123456789101112131415161718
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Attach",
  6. "type": "node",
  7. "request": "attach",
  8. "port": 5858,
  9. "address": "localhost",
  10. "restart": true,
  11. "sourceMaps": false,
  12. "outDir": null,
  13. "localRoot": "${workspaceRoot}",
  14. "remoteRoot": "/app",
  15. "timeout": 10000
  16. }
  17. ]
  18. }