| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "type": "gulp",
- "task": "build",
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "Open in Chrome Mac",
- "command": "Chrome",
- "osx": {
- "command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
- },
- "args": [
- "${file}"
- ],
- "problemMatcher": []
- },
- {
- "label": "Open in Chrome Linux",
- "command": "Chrome",
- "linux": {
- "command": "google-chrome"
- },
- "args": [
- "${file}"
- ],
- "problemMatcher": []
- },
- {
- "label": "Open in Chrome Windows",
- "command": "Chrome",
- "windows": {
- "command": "start chrome"
- },
- "args": [
- "${file}"
- ]
- }
- ]
- }
|