Files
minecraft-bedrock-json-schemas/.vscode/tasks.json
DaanV2 c576a4f8af Added
2022-09-08 20:03:23 +02:00

39 lines
916 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Format workspace",
"command": "Powershell.exe -executionpolicy remotesigned -File ./scripts/format_documents.ps1",
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"presentation": { "reveal": "always", "panel": "dedicated" },
"problemMatcher": ["$tsc-watch"]
},
{
"type": "npm",
"script": "compile",
"isBackground": false,
"group": "build",
"label": "npm compile 'schemas'",
"presentation": { "reveal": "always", "panel": "dedicated" },
"problemMatcher": ["$tsc"]
},
{
"type": "npm",
"script": "test",
"isBackground": false,
"group": "build",
"problemMatcher": ["$tsc"]
}
]
}