pxt-calliope/.vscode/tasks.json

20 lines
244 B
JSON
Raw Normal View History

2016-03-20 03:15:20 +01:00
{
2021-11-25 17:27:39 +01:00
"version": "2.0.0",
2016-03-20 03:15:20 +01:00
// Task runner is jake
2016-04-07 20:30:22 +02:00
"command": "pxt",
2016-03-20 03:15:20 +01:00
"tasks": [
{
2021-11-25 17:27:39 +01:00
"label": "serve",
"type": "shell",
"command": "pxt",
"args": [
"serve"
],
2016-03-20 03:15:20 +01:00
"problemMatcher": [
"$tsc"
2021-11-25 17:27:39 +01:00
],
"group": "build"
2016-03-20 03:15:20 +01:00
}
]
}