vscode-azurefunctions/.vscode/tasks.json

33 строки
765 B
JSON
Исходник Обычный вид История

{
2017-09-27 00:12:17 +03:00
"version": "2.0.0",
"tasks": [
{
"taskName": "npm",
"type": "shell",
"command": "npm",
"group": {
"kind": "build",
"isDefault": true
},
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"isBackground": true,
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$tsc-watch"
},
{
"type": "npm",
"script": "lint",
"problemMatcher": {
"base": "$tslint5",
2017-10-02 19:08:03 +03:00
"fileLocation": "absolute"
}
2017-09-27 00:12:17 +03:00
}
]
}