tasks.json 616 B

12345678910111213141516171819202122232425262728
  1. {
  2. // 有关 tasks.json 格式的文档,请参见
  3. // https://go.microsoft.com/fwlink/?LinkId=733558
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "npm",
  8. "script": "build",
  9. "group": "build",
  10. "problemMatcher": []
  11. },
  12. {
  13. "type": "npm",
  14. "script": "buildTest",
  15. "group": "build",
  16. "problemMatcher": [],
  17. "label": "npm: buildTest",
  18. "detail": "UMI_ENV=buildTest umi build"
  19. },
  20. {
  21. "type": "npm",
  22. "script": "startTest",
  23. "problemMatcher": [],
  24. "label": "npm: startTest",
  25. "detail": "UMI_ENV=buildTest umi build"
  26. }
  27. ]
  28. }