{ "version": "2.0.0", "tasks": [ { "label": "build pinball", "type": "shell", "command": "cd pinball-physics ; cargo build --target wasm32-unknown-unknown", "problemMatcher": [], "group": "build" }, { "label": "build server", "type": "shell", "command": "cd server-rust ; spacetime build", "problemMatcher": [], "group": "build" }, { "label": "build", "dependsOn": [ "build pinball", "build server" ], "dependsOrder": "sequence", "group": { "kind": "build", "isDefault": true } } ] }