node_modules/@types/node/index.d.ts(20,1):错误 TS1084:无效的“参考”指令语法

新手上路,请多包涵

我有打字稿编译的问题。有没有其他人收到这个错误?

node_modules/@types/node/index.d.ts(20,1):错误 TS1084:“参考”指令语法无效。

tsconfig.json:

 {
    "compileOnSave": false,
    "compilerOptions": {
        "sourceMap": true,
        "outDir": "./dist",
        "rootDir": "./app",
        "target": "es6",
        "module": "commonjs",
        "declaration": false,
        "noImplicitAny": false,
        "removeComments": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "listFiles": false,
        "skipLibCheck": true
    },
    "include": [
        "./app/**/*.ts"
    ]
}

package.json 中的打字稿版本: "typescript": "^2.6.1"

原文由 heyJoe 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.1k
1 个回答

有同样的问题。打开文件 ../node_modules/@types/node/index.d.ts

并删除第三个斜杠

// <reference lib="es2015" />

重新编译

原文由 Morfing 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题