{ // 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": "Run", "type": "shell", "command": "godot --path .", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } }, { "label": "Edit", "type": "shell", "command": "godot -e --path .", "problemMatcher": [] }, { "label": "Export Web", "type": "shell", "command": "make web", "problemMatcher": [] }, { "label": "Make build", "type": "shell", "command": "make build" } ] }