我正在使用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
然而,申报工作仍然有效,并且会跳至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
无济于事,我不知道错误告诉了我什么。
答案 0 :(得分:0)
我在Webstorm 2018中遇到了同样的问题,我关闭并重新打开了Wenstorm和whala,红线消失了。我只是想刷新Webstorm。由于Webstorm和PhpStorm都位于同一保护伞下,因此这也许也对您有用。