launch.json 691 B

12345678910111213141516171819202122232425262728
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "chrome",
  6. "request": "launch",
  7. "name": "Meteor: Chrome",
  8. "url": "http://localhost:3000",
  9. "webRoot": "${workspaceFolder}"
  10. },
  11. {
  12. "type": "node",
  13. "request": "launch",
  14. "name": "Meteor: Node",
  15. "runtimeExecutable": "/home/wekan/.meteor/meteor",
  16. "runtimeArgs": ["run", "--inspect-brk=9229"],
  17. "outputCapture": "std",
  18. "port": 9229,
  19. "timeout": 60000
  20. }
  21. ],
  22. "compounds": [
  23. {
  24. "name": "Meteor: All",
  25. "configurations": ["Meteor: Node", "Meteor: Chrome"]
  26. }
  27. ]
  28. }