zork/.vscode/tasks.json

23 lines
523 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"args": ["dungeon"],
"showOutput": "always",
"tasks": [
{
"taskName": "native",
"args": ["dungeon"]
},
{
"taskName": "js",
"args": ["dungeon-js"]
},
{
"taskName": "clean",
"args": ["clean"]
}
]
}