{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Tarpaulin test coverage", "isBackground": true, "type": "shell", "command": "make watch-tests", // Run in background: https://stackoverflow.com/a/54017304 "problemMatcher": [ { "pattern": [ { "regexp": ".", "file": 1, "location": 2, "message": 3 } ], "background": { "activeOnStart": true, "beginsPattern": ".", "endsPattern": ".", } } ], "runOptions": { "runOn": "folderOpen" }, }, { "label": "Dev Webserver", "isBackground": true, "type": "shell", "command": "make watch", "problemMatcher": [ { "pattern": [ { "regexp": ".", "file": 1, "location": 2, "message": 3 } ], "background": { "activeOnStart": true, "beginsPattern": ".", "endsPattern": ".", } } ], "runOptions": { "runOn": "folderOpen" }, } ] }