Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "gulp",
  6. "task": "watch",
  7. "label": "gulp: watch",
  8. "isBackground": true,
  9. "problemMatcher": {
  10. "owner": "gulp",
  11. "fileLocation": "relative",
  12. "pattern": [
  13. {
  14. "regexp": "^(\\w+): (.+)$",
  15. "severity": 1,
  16. "message": 2
  17. },
  18. {
  19. "regexp": "^\\s+on line (\\d+) of (.+)$",
  20. "file": 2,
  21. "location": 1
  22. }
  23. ],
  24. "background": {
  25. "activeOnStart": true,
  26. "beginsPattern": "^[\\d{2}:\\d{2}:\\d{2}] Starting '[^']+'...",
  27. "endsPattern": "^[\\d{2}:\\d{2}:\\d{2}] Finished '[^']+' after \\d+ ms"
  28. }
  29. }
  30. }
  31. ]
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement