Files
phaser-tools/example-tasks.json
2026-07-31 18:35:00 +02:00

30 lines
726 B
JSON

{
// 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": "Serve",
"type": "shell",
"command": "make serve",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Web",
"type": "shell",
"command": "make web",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
}
]
}