vscode-azurefunctions/.vscode/tasks.json

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

{
2017-09-27 00:12:17 +03:00
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
2017-09-27 00:12:17 +03:00
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": true,
"presentation": {
2019-10-02 20:43:34 +03:00
"reveal": "never"
2017-09-27 00:12:17 +03:00
},
"problemMatcher": "$tsc-watch"
},
{
"type": "npm",
"script": "lint",
2021-02-12 22:31:51 +03:00
"problemMatcher": "$eslint-stylish"
2017-09-27 00:12:17 +03:00
}
]
}