launch.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "type": "node",
  23. "request": "launch",
  24. "name": "Test: Node",
  25. "runtimeExecutable": "meteor",
  26. "runtimeArgs": [
  27. "test",
  28. "--inspect-brk=9229",
  29. "--port=4040",
  30. "--exclude-archs=web.browser.legacy,web.cordova",
  31. "--driver-package=meteortesting:mocha",
  32. "--settings=settings.json"
  33. ],
  34. "outputCapture": "std",
  35. "port": 9229,
  36. "timeout": 60000
  37. }
  38. ],
  39. "compounds": [
  40. {
  41. "name": "Meteor: All",
  42. "configurations": ["Meteor: Node", "Meteor: Chrome"]
  43. }
  44. ]
  45. }