Files
minecraft-bedrock-json-schemas/.vscode/tasks.json

38 lines
876 B
JSON
Raw Normal View History

2021-03-21 15:06:21 +01:00
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Format workspace",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/format_documents.ps1",
"problemMatcher": "$tsc"
2021-08-18 17:11:09 +02:00
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"presentation": { "reveal": "silent", "panel": "dedicated" },
"problemMatcher": ["$tsc-watch"]
},
{
"type": "npm",
"script": "compile",
"isBackground": false,
"group": "build",
"presentation": { "reveal": "silent", "panel": "dedicated" },
"problemMatcher": ["$tsc"]
},
{
2021-08-18 20:15:02 +02:00
"type": "npm",
"script": "test",
"isBackground": false,
2021-08-18 17:11:09 +02:00
"group": "build",
2021-08-18 20:15:02 +02:00
"problemMatcher": ["$tsc"]
2021-03-21 15:06:21 +01:00
}
]
}