解决方法
您很可能需要在您的项目中下载并包含jQuery-
jquery.d.ts
的
TypeScript definition file。
选项1:安装@types包(推荐用于TS 2.0)
在你的项目运行中:
npm install --save-dev @types/jquery
然后编译器将自动解析jquery的定义。
选项2:手动下载
下载here。
选项3:使用打字
// 1. Install typings npm install typings -g // 2. Download jquery.d.ts (run this command in the root dir of your project) typings install dt~jquery --global --save
在设置定义文件之后,导入所需的TypeScript文件中的别名($),以像往常一样使用它。
import $ from "jquery"; // or import $ = require("jquery");