在简单的module.exports语句之后,WebStorm无法识别类型

时间:2018-03-01 12:21:57

标签: node.js typescript webstorm

我在我的 TypeScript服务器中使用了一些用TypeScript编写的npm模块。

WebStorm自动完成了我的工作:

enter image description here

我正在使用一个简单的module.exports来使ldClient可以在文件外部访问:

const LaunchDarkly = require('ldclient-node');
const ldClient                 = LaunchDarkly.init(process.env.LAUNCH_DARKLY_DEV_KEY);
module.exports                 = ldClient;

当需要此文件时,WebStorm不再自动完成我:

enter image description here

然而,当使用import * from '....' WebStorm成功时,对于技术问题,我没有使用它的权限。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

记录为WEB-31531,请按照此票证进行更新