tasks.json 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "gulp",
  8. "task": "build",
  9. "group": {
  10. "kind": "build",
  11. "isDefault": true
  12. }
  13. },
  14. {
  15. "label": "Open in Chrome Mac",
  16. "command": "Chrome",
  17. "osx": {
  18. "command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
  19. },
  20. "args": [
  21. "${file}"
  22. ],
  23. "problemMatcher": []
  24. },
  25. {
  26. "label": "Open in Chrome Linux",
  27. "command": "Chrome",
  28. "linux": {
  29. "command": "google-chrome"
  30. },
  31. "args": [
  32. "${file}"
  33. ],
  34. "problemMatcher": []
  35. },
  36. {
  37. "label": "Open in Chrome Windows",
  38. "command": "Chrome",
  39. "windows": {
  40. "command": "start chrome"
  41. },
  42. "args": [
  43. "${file}"
  44. ]
  45. }
  46. ]
  47. }