1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "taskName": "test", 8 "command": "make test", 9 "type": "shell", 10 "group": { 11 "kind": "test", 12 "isDefault": true 13 } 14 }, 15 { 16 "taskName": "check", 17 "command": "make check", 18 "type": "shell", 19 "group": { 20 "kind": "test" 21 } 22 } 23 ] 24}