mc-publish/.vscode/tasks.json

23 lines
403 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "codegen",
"type": "npm",
"script": "generate",
"problemMatcher": "$tsc",
},
{
"label": "build",
"type": "npm",
"script": "build",
"problemMatcher": "$tsc",
},
{
"label": "test",
"type": "npm",
"script": "test",
"problemMatcher": "$eslint-stylish",
},
],
}