如何在WebStorm中解决“tsconfig.json中未包含的对应文件”错误?

时间:2016-12-14 14:21:30

标签: typescript phpstorm webstorm typescript-typings tsconfig

我正在使用highland.js并安装了它的类型定义:

jq .dependencies package.json | grep highland
  "@types/highland": "https://registry.npmjs.org/@types/highland/-/highland-1.14.30.tgz",
  "highland": "^2.9.0",

我正在使用PhpStorm(它使用TypeScript的WebStorm组件)。

当我输入提示时:

Highland.Stream<any>

PhpStorm抱怨流:

Corresponding file not included in tsconfig.json

Screenshot of the error

然而,申报工作仍然有效,并且会跳至node_modules/@types/highland/index.d.ts:367

interface Stream<R> extends NodeJS.EventEmitter { ... }

我可以使用tsc编译代码,没有错误,并且按预期工作。什么是PhpStorm / WebStorm的问题?

$ jq . tsconfig.json
{
  "compilerOptions": {
    "module": "commonjs",
    "lib": [
      "es2016",
      "dom"
    ],
    "target": "es6",
    "noImplicitAny": true,
    "sourceMap": true,
    "outDir": "dist",
    "strictNullChecks": true,
    "skipLibCheck": true,
    "types": [
      "node",
      "mocha",
      "chai",
      "sinon"
    ]
  },
  "exclude": [
    "node_modules",
    "src/typings-custom/main.d.ts"
  ]
}

我尝试将高地添加到types无济于事,我不知道错误告诉了我什么。

1 个答案:

答案 0 :(得分:0)

我在Webstorm 2018中遇到了同样的问题,我关闭并重新打开了Wenstorm和whala,红线消失了。我只是想刷新Webstorm。由于Webstorm和PhpStorm都位于同一保护伞下,因此这也许也对您有用。