Visual Studio代码中没有构建命令定义的错误

时间:2017-04-15 11:11:54

标签: typescript visual-studio-code

当我在Visual Studio Code中按CMD + SHIFT + B(将打字稿编译为javascript)时,我收到以下错误:

No build task defined. Mark a task with 'isBuildCommand' in the tasks.json file.

我的tasks.json文件看起来像这样。这一直适用于任何其他的Typescript项目。

{
    "version": "0.1.0",
    "command": "tsc",
    "isShellCommand": true,
    "args": ["-w"],
    "problemMatcher": "$tsc"
}

它不起作用,即使我添加了'isBuildCommand',我仍然会收到同样的错误!

{
    "version": "0.1.0",
    "command": "tsc",
    "isBuildCommand": true,
    "args": ["-w"],
    "problemMatcher": "$tsc"
}

1 个答案:

答案 0 :(得分:3)

这是VS Code最新版本的一个未解决的问题。解决方法是关闭文件夹并再次打开它。

相关问题:https://github.com/Microsoft/vscode/issues/24796