pxt-calliope/.vscode/tasks.json
2021-11-25 17:27:39 +01:00

20 lines
244 B
JSON

{
"version": "2.0.0",
// Task runner is jake
"command": "pxt",
"tasks": [
{
"label": "serve",
"type": "shell",
"command": "pxt",
"args": [
"serve"
],
"problemMatcher": [
"$tsc"
],
"group": "build"
}
]
}