space/.vscode/tasks.json
2021-11-19 17:10:34 -08:00

28 lines
No EOL
460 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "luxe",
"script": "build",
"problemMatcher": [
"$luxe-absolute",
"$luxe-relative"
],
"group": "build",
"label": "luxe: build - Build the project"
},
{
"type": "luxe",
"script": "run",
"problemMatcher": [
"$luxe-absolute",
"$luxe-relative"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "luxe: run - Build & Run the project"
}
]
}