{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Libs", "type": "shell", "command": "npm run dev-libs", "presentation": { "group": "stage" } }, { "label": "Stage", "type": "shell", "command": "sleep 0.5 && npm run stage", "presentation": { "group": "stage" } }, { "label": "Dev", "type": "shell", "command": "sleep 0.5 && npm run dev", "presentation": { "group": "stage" } }, { "label": "Start stage & libs", "dependsOn": ["Libs", "Stage"], "problemMatcher": [] }, { "label": "Start dev & libs", "dependsOn": ["Libs", "Dev"], "problemMatcher": [] } ] }