Files
shooter-demo/.vscode/tasks.json
2025-11-28 18:11:30 +08:00

31 lines
562 B
JSON

{
"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
}
}
]
}