/ bin / sh:tsc:找不到命令

时间:2018-11-16 17:08:38

标签: linux angular typescript visual-studio-code mint

我正在使用Visual Studio Code来处理TypeScript。 我创建了task.json文件以编译ts文件,但是在运行它时出现此错误:

/bin/sh: tsc: command not found
The terminal process terminated with exit code: 127

这是我的task.json文件:

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

有人知道这是什么吗? 我正在使用Linux Mint。

它与tsc is not recognized as internal or external command之一不重复 我已经尝试了这些步骤,但是没有用。

这是我的tsconfig.json:

{
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "sourceMap": true
    }
}

在输入节点-v时使用终端,它显示如下: v11.2.0

tsc -v: 版本3.1.6

1 个答案:

答案 0 :(得分:1)

似乎二进制tsc不在您的路径中。是否已安装TypeScript软件包?这可能是tsc is not recognized as internal or external command

的副本