advanced-spritesheet-export/.vscode/tasks.json

18 lines
370 B
JSON
Raw Permalink Normal View History

2024-07-30 01:24:46 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "bash",
"args": ["-c", "make"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}