You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
619 B

4 years ago
  1. // See https://go.microsoft.com/fwlink/?LinkId=733558
  2. // for the documentation about the tasks.json format
  3. {
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "npm",
  8. "script": "watch",
  9. "problemMatcher": [
  10. "$ts-webpack-watch",
  11. "$tslint-webpack-watch"
  12. ],
  13. "isBackground": true,
  14. "presentation": {
  15. "reveal": "never"
  16. },
  17. "group": {
  18. "kind": "build",
  19. "isDefault": true
  20. }
  21. },
  22. {
  23. "type": "npm",
  24. "script": "test-watch",
  25. "problemMatcher": "$tsc-watch",
  26. "isBackground": true,
  27. "presentation": {
  28. "reveal": "never"
  29. },
  30. "group": "build"
  31. }
  32. ]
  33. }