【发布时间】:2017-10-06 20:09:12
【问题描述】:
在 Visual Studio Code 中,我设置了以下构建任务 (tasks.json),它一直工作到今天。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "tsc",
"isShellCommand": true,
"args": ["-p", "."],
"showOutput": "always",
"problemMatcher": "$tsc"
}
我确实将 VSCode 升级到 1.12.1,所以我想知道升级是否是它不再起作用的原因。基本上现在当我按下 Ctrl Shift B 时,什么也没有发生。通常在底部显示一个旋转图标,然后在任务输出中显示错误。现在什么也没有发生。我仍然可以成功构建命令(tsc -p。)
【问题讨论】: