{ "version": "2.0.0", "tasks": [ { "label": "Start Proxy", "type": "shell", "command": "./proxy.cmd", "isBackground": true, "problemMatcher": { "pattern": { "regexp": ".*" }, "background": { "activeOnStart": true, "beginsPattern": "^.*", "endsPattern": "listening on|started|ready" } } }, { "label": "Start CRA", "type": "shell", "command": "npm start", "isBackground": true, "options": { "env": { "BROWSER": "none" } }, "problemMatcher": { "pattern": { "regexp": ".*" }, "background": { "activeOnStart": true, "beginsPattern": "^.*", "endsPattern": "Compiled successfully|webpack compiled" } } }, { "label": "Start All", "dependsOn": ["Start Proxy", "Start CRA"], "dependsOrder": "parallel" } ] }