为什么我的TypeScript会出错TS2394?

时间:2017-11-11 23:22:05

标签: typescript

我有一个非常简单的功能:

function open(callback) {

}

在命令行中,当我运行tsc时,我得到:

../../../../npm/lib/node_modules/typescript/lib/lib.es6.d.ts(20833,18): error TS2394: Overload signature is not compatible with function implementation.

我的tsc版本是2.6.1

为什么我收到上述错误消息?

1 个答案:

答案 0 :(得分:2)

  

为什么我收到上述错误消息?

你的tsconfig被塞满了。确保您使用某个src文件夹设置include,例如

{
    "include":[
        "src"
    ]
}

更多

https://basarat.gitbooks.io/typescript/content/docs/project/compilation-context.html