pxt-calliope/.vscode/tasks.json

21 lines
406 B
JSON
Raw Normal View History

2016-03-20 03:15:20 +01:00
{
"version": "0.1.0",
// Task runner is jake
"command": "kind",
// 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"
]
}
]
}