Initial files for MakeCode project

This commit is contained in:
Alexander Davis
2021-06-19 17:23:04 +01:00
parent 0b816eead3
commit 5e42d4ad77
13 changed files with 319 additions and 0 deletions

30
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,30 @@
// A task runner that calls the MakeCode (PXT) compiler
{
"version": "2.0.0",
"tasks": [{
"label": "pxt deploy",
"type": "shell",
"command": "pxt deploy --local",
"group": "build",
"problemMatcher": [ "$tsc" ]
}, {
"label": "pxt build",
"type": "shell",
"command": "pxt build --local",
"group": "build",
"problemMatcher": [ "$tsc" ]
}, {
"label": "pxt install",
"type": "shell",
"command": "pxt install",
"group": "build",
"problemMatcher": [ "$tsc" ]
}, {
"label": "pxt clean",
"type": "shell",
"command": "pxt clean",
"group": "test",
"problemMatcher": [ "$tsc" ]
}]
}