12345678910111213141516171819202122232425262728 |
- {
- // 有关 tasks.json 格式的文档,请参见
- // https://go.microsoft.com/fwlink/?LinkId=733558
- "version": "2.0.0",
- "tasks": [
- {
- "type": "npm",
- "script": "build",
- "group": "build",
- "problemMatcher": []
- },
- {
- "type": "npm",
- "script": "buildTest",
- "group": "build",
- "problemMatcher": [],
- "label": "npm: buildTest",
- "detail": "UMI_ENV=buildTest umi build"
- },
- {
- "type": "npm",
- "script": "startTest",
- "problemMatcher": [],
- "label": "npm: startTest",
- "detail": "UMI_ENV=buildTest umi build"
- }
- ]
- }
|