我的ASP.NET MVC项目中有很多javascript插件和库,
我想转换成打字稿。
问题:
如何在ts文件中引用jQuery?
当我使用tsc
myfile.ts(170,4):错误TS2304:找不到名称'jQuery' myfile.ts(172,1):错误TS2304:找不到名字'$' myfile.ts(173,2):错误TS2304:找不到名字'$'。
答案 0 :(得分:4)
shared_ptr
到您的项目根目录cd
现在在node_modules下你会找到" index.d.ts" jQuery的typescript定义文件。
node_modules/@types/jquery/index.d.ts
5.将文件拖放到打开的打字稿文件的顶部" yourFile.ts"
///< reference 路径=" ../../../ node_modules/@types/jquery/index.d.ts" />
....
...你的打字代码在这里
现在您将拥有 jQuery 和 $ 的智能感知。