Ionic2 Angular2 Typescript模块 - 类型提示问题

时间:2016-03-09 09:52:13

标签: node.js module typescript angular ionic2

来自上一个问题Typescript creating modules

我在node_modules文件夹外创建了模块,phpstorm没有拾取库的位置。

它确实编译并且运行正常,但是类型提示没有拾取,这会在开发时导致问题。

type-hint

如果我将模块放在node_modules内,则会自动拾取,否则会显示上述错误。

如何告诉phpstorm的类型提示我的模块在node_modules之外的哪个位置?

1 个答案:

答案 0 :(得分:0)

我无法看到你的from部分在哪一行,但我猜是因为当所有内容都在 node_modules 中时你必须忘记./部分。

导入会在 node_modules 中查找,当您的内容如下所示:

 import * from 'something_in_node_modules';

如果您在文件位置的前面添加./ ,它将会显示您当前所在的目录。

例如:

 import * from './some-ts-file-in-this-directory';

试试吧,它应该可以解决问题!