launch.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "node",
  6. "request": "launch",
  7. "name": "Meteor: Node",
  8. "runtimeExecutable": "meteor",
  9. "runtimeArgs": [
  10. "--port=4000",
  11. "--exclude-archs=web.browser.legacy,web.cordova",
  12. "--raw-logs"
  13. ],
  14. "env": {
  15. "WRITABLE_PATH": "/tmp/uploads",
  16. },
  17. "outputCapture": "std",
  18. "restart": true,
  19. "timeout": 60000
  20. },
  21. {
  22. "type": "chrome",
  23. "request": "launch",
  24. "name": "Meteor: Chrome",
  25. "url": "http://localhost:4000",
  26. "sourceMapPathOverrides": {
  27. "meteor://💻app/*": "${workspaceFolder}/*"
  28. },
  29. "userDataDir": "${env:HOME}/.vscode/chrome"
  30. },
  31. {
  32. "type": "node",
  33. "request": "launch",
  34. "name": "Test: Node",
  35. "runtimeExecutable": "meteor",
  36. "runtimeArgs": [
  37. "test",
  38. "--port=4040",
  39. "--exclude-archs=web.browser.legacy,web.cordova",
  40. "--driver-package=meteortesting:mocha",
  41. "--settings=settings.json",
  42. "--raw-logs"
  43. ],
  44. "env": {
  45. "TEST_WATCH": "1"
  46. },
  47. "outputCapture": "std",
  48. "timeout": 60000
  49. }
  50. ],
  51. "compounds": [
  52. {
  53. "name": "Meteor: All",
  54. "configurations": ["Meteor: Node", "Meteor: Chrome"]
  55. }
  56. ]
  57. }