如何定义多个任务来运行不同的命令?

时间:2016-07-08 05:21:36

标签: typescript configuration visual-studio-code

重复问题?

可能是这样,但我没有找到任何答案。我在下面提到一些问题。这与我的问题有关。 Question 1Question 2Question 3

问题概述:

在我的task.json中,我写了下面的代码,当我按下ctrl + shift + B.它在我的浏览器上显示输出。哪个工作正常。

"version": "0.1.0",

"command": "chrome",

"windows": {
    "command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
},

"args": ["index.html"]

在几天内/我正在学习SASS,我需要将其与我的VS Code集成。所以,我发现下面的配置要添加到tasks.json中。 Reference Site

{
"version": "0.1.0",
"command": "node-sass",
"isShellCommand": true,
"args": ["style.scss","style.css"]
}

问题: 当我在我的tasks.json文件中放入SASS配置时。它向我展示了一些错误。

{
"version": "0.1.0",

"command": "chrome",

"windows": {
    "command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
},

"args": ["index.html"],

"tasks": [
    {
        "taskName": "Transpile SASS into CSS", //my task name
        "command": "node-sass", //error, command is not allowed here
        "isShellCommand": true, //error, command is not allowed here
        "args": ["style.scss","style.css"]
    }
]

}

问题是如何在VS Code中管理多个任务。请解释一下我做错了什么。

0 个答案:

没有答案