{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format // Copy to .vscode/tasks.json. "version": "2.0.0", "tasks": [ { "label": "Serve", "type": "shell", "command": "make serve", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } }, { "label": "Build Web", "type": "shell", "command": "make web", "problemMatcher": [] }, { "label": "Make build", "type": "shell", "command": "make build" } ] }