我正在努力让VS2015 intellisense为我的基于requirejs的应用程序工作。
我遵循了这篇文章http://blogs.msdn.com/b/visualstudio/archive/2015/04/20/using-requirejs-with-visual-studio.aspx以及来自各种论坛的各种提示。
我现在已经实际上让VS意识到我的文件中有脚本加载器调用。
在Javascript语言服务的输出中,第一行表示已加载require.config.js。
然而。一旦我开始输入我的一个模块文件,输出窗口就会填充这样的行:
File C:\repository\...\invoices.js contains a script loader file reference
(url = ../services/formvalidator.js, type = text/javascript) that will be
ignored because the upper limit (50) of references that can be added via
script loaders has been reached.
...而intellisense只是给了我“Intellisense无法确定所有引用模块的这个表达式的准确完成列表”。
我现在该怎么办?当然,使用requirejs这一点的全部意义在于将代码拆分为单独的模块文件。但是如果达到了一些限制,并且没有加载智能感知,它似乎没用......
我可以更改此限制吗? 或者是其他错误?
有关下一步尝试的建议吗?
干杯! 金