code-push/.vscode/tasks.json

22 строки
418 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build",
"command": "npm",
"args": [
"run",
"build"
],
"presentation": {
"echo": false,
"focus": false
},
"problemMatcher": [
"$tsc"
]
}
]
}