Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "0.1.0",
  5. "command": "gulp",
  6. "isShellCommand": true,
  7. "options": {
  8. "cwd": "${workspaceRoot}/app/src"
  9. },
  10. "tasks": [
  11. {
  12. "taskName": "build.local",
  13. "args": ["APP-LOCAL-BUILD"],
  14. "suppressTaskName": true,
  15. "isBuildCommand": true
  16. },
  17. {
  18. "taskName": "build.js",
  19. "args": ["app.js"],
  20. "suppressTaskName": true
  21. },
  22. {
  23. "taskName": "app.watch.all",
  24. "isBackground": true,
  25. "showOutput": "never"
  26. }
  27. ]
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement