Как настроить следующие задачи для наблюдения, а не для сборки?
Я довольно новичок в этом и сейчас читаю https://code.visualstudio.com/docs/editor/tasks, в котором не совсем ясно, как настроитьсмотреть задачи в tasks.json.С другой стороны, может быть, задачи наблюдения вообще не должны помещаться в tasks.json?
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Sass Compile",
"type": "shell",
"command": "node-sass popup.scss popup.css",
"group": "build",
"problemMatcher": [
"$node-sass"
]
},
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"group": "build",
"problemMatcher": [
"$tsc"
]
}
]
}
Информация о версии кода Visual Studio:
Version: 1.27.2
Commit: f46c4c469d6e6d8c46f268d1553c5dc4b475840f
Date: 2018-09-12T07:11:15.873Z
Electron: 2.0.7
Chrome: 61.0.3163.100
Node.js: 8.9.3
V8: 6.1.534.41
Architecture: x64