tasks.json 654 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "type": "npm",
  6. "script": "install",
  7. "problemMatcher": []
  8. },
  9. {
  10. "type": "npm",
  11. "script": "build",
  12. "group": "build",
  13. "problemMatcher": []
  14. },
  15. {
  16. "type": "npm",
  17. "script": "test",
  18. "group": "test",
  19. "problemMatcher": []
  20. },
  21. {
  22. "type": "npm",
  23. "script": "lint",
  24. "group": "test",
  25. "problemMatcher": []
  26. },
  27. {
  28. "type": "npm",
  29. "script": "lint:fix",
  30. "group": "test",
  31. "problemMatcher": []
  32. },
  33. {
  34. "type": "npm",
  35. "script": "clear",
  36. "problemMatcher": []
  37. }
  38. ]
  39. }