在Visual Studio中,我创建了一个默认的TypeScript站点。
然后我使用Nuget添加jquery.d.ts。
然后我编译应用程序。
错误窗口显示jquery.d.ts文件中的101个错误,例如:
Error 341 ',' expected.
如何解决这些错误?
我是否错误地导入了文件,或者是否需要设置一些设置?
UI中显示的实际错误显示:
A parameterized initializer is only allowed in a function or constructor implementation.
在这一行:
replaceAll(target: JQuery|any[]|Element|string): JQuery;
答案 0 :(得分:1)
您可能正在使用旧版本的TypeScript编译器。联合类型(即JQuery|any[]|Element|string
)仅在TypeScript 1.4
尝试为Visual Studio更新TypeScript。