{ "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "./docker_build.sh update -s -c -d", "presentation": { "showReuseMessage": false, "clear": true }, "windows":{ "command": "wsl -- ./docker_build.sh update -s -c -d" }, "group": { "kind": "build", "isDefault": true } }, { "label": "build_full", "type": "shell", "command": "./docker_build.sh release -c -d", "presentation": { "showReuseMessage": false, "clear": true }, "windows": { "command": "wsl -- ./docker_build.sh update -c -d" }, "group": "build" }, { "label": "build_n64", "type": "shell", "command": "./docker_build.sh n64 -d", "presentation": { "showReuseMessage": false, "clear": true }, "windows": { "command": "wsl -- ./docker_build.sh n64 -d" }, "group": "build" } ] }