在Visual Studio Code中配置运行器时无法看到TypeScript运行器选项

时间:2017-08-15 06:55:45

标签: typescript visual-studio-code

当我尝试使用Visual Studio Code的Global Tasks菜单配置Default build任务时,我没有看到与typescript相关的选项,我只看到四个选项: - 的MSBuild Maven的 .NetCore 其他 这是我的VSCode IDE的图像: -

Vscode IDE Build Runner options

我已经在我的机器上成功安装了打字稿 npm install -g typescript

请有人指出问题所在。

1 个答案:

答案 0 :(得分:0)

选择Others

这是MY tsc任务转轮的一个例子:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "taskName": "tsc",
            "command": "tsc --watch",
            "type": "shell",
            "problemMatcher": [
                "$tsc-watch"
            ]
        }
    ]
}

保存之后,您可以使用以下命令启动它:

CTRL + Shift + P - >任务:运行任务 - > tsc

现在,每次更改并保存任何*.ts文件时,它都会运行并重新传输。