Typescript找不到节点核心模块

时间:2017-08-21 11:47:10

标签: node.js typescript

我正在尝试用TypeScript编写一个类,因此我想导入一些由于

而失败的本机节点模块
  

[ts]无法找到模块' net'。

其他本机节点模块也会出现同样的问题。但是它确实适用于蓝鸟。 (见截图)。

http://xsltransform.net/jxDigUw

我的tsconfig.json:

{
    "compilerOptions": {
        "target": "es6",
        "module": "commonjs",
        "moduleResolution": "node",
        "sourceMap": true,
        "allowJs": true,
        "types": ["node"]
    },
    "exclude": [
        "node_modules"
    ]
}

我的问题:

为什么它不能识别像net' net' ?

编辑:执行构建任务时抛出此错误:错误TS2688:找不到'节点'

的类型定义文件

0 个答案:

没有答案