{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Darwin - Start Game", "type": "shell", "command": "./start-game.sh", "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Darwin - Start AI Server", "type": "shell", "command": "./start-ai-server.sh", "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Darwin - Start Astron Server", "type": "shell", "command": "./start-astron-server.sh", "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, { "label": "Darwin - Start UberDOG Server", "type": "shell", "command": "./start-uberdog-server.sh", "group": "test", "presentation": { "reveal": "always", "panel": "new" } }, ] }