WebStorm TypeScript定义不起作用

时间:2017-09-22 20:53:24

标签: typescript three.js webstorm

我正在编写three.js代码并在设置中启用TypeScript定义。但是没有效果。我下载了它,检查了勾号但没有发生任何事情。所有three.js代码都带有下划线,WebStorm写道没有导入。完整日志:

Dim ary As Variant ary = Array("Value1", "Value2", "Value3") 'populate this array however you want. With ActiveSheet.Cells(1, 1).Validation .Delete .Add Type:=xlValidateList, Formula1:=Join(ary, ",") .IgnoreBlank = True .InCellDropdown = True .InputTitle = "" .ErrorTitle = "" .InputMessage = "" .ErrorMessage = "" .ShowInput = True .ShowError = True End With

如何正确修复和编码,导致现在不可能?

1 个答案:

答案 0 :(得分:0)

您可能正在使用常规<script>标记加载three.js。我相信你启用的声明不是&#34; ambient&#34;,它们描述了它的commonjs模块导出的内容,因此它不会考虑你的设置有全局可用的三个.js。

您可以将WebStorm的这些定义设置为ambient declarations某种方式,但使用此方法的目的是importing three.js via modules