pxt-calliope/.vscode/tasks.json

21 lines
405 B
JSON
Raw Normal View History

2016-03-20 03:15:20 +01:00
{
"version": "0.1.0",
// Task runner is jake
2016-04-07 20:30:22 +02:00
"command": "pxt",
2016-03-20 03:15:20 +01:00
// Need to be executed in shell / cmd
"isShellCommand": true,
"showOutput": "always",
"tasks": [
{
// TS build command is local.
"taskName": "serve",
// Make this the default build command.
"isBuildCommand": true,
// Use the redefined Typescript output problem matcher.
"problemMatcher": [
"$tsc"
]
}
]
}