yahboom_mbit/.vscode/tasks.json

37 lines
836 B
JSON

// A task runner that calls the PXT compiler and
{
"version": "0.1.0",
// The command is pxt. Assumes that PXT has been installed using npm install -g pxt
"command": "pxt",
// The command is a shell script
"isShellCommand": true,
// Show the output window always.
"showOutput": "always",
"tasks": [{
"taskName": "deploy",
"isBuildCommand": true,
"problemMatcher": "$tsc",
"args": [""]
}, {
"taskName": "build",
"isTestCommand": true,
"problemMatcher": "$tsc",
"args": [""]
}, {
"taskName": "clean",
"isTestCommand": true,
"problemMatcher": "$tsc",
"args": [""]
}, {
"taskName": "serial",
"isTestCommand": true,
"problemMatcher": "$tsc",
"args": [""]
}]
}