如何在angular2项目中使用@types使用jquery

时间:2017-02-26 15:33:13

标签: angular

我做了以下事情,

1) npm install --save-dev jquery

2) npm install --save-dev @types/jquery

3) tsconfig.json

"types": [
      "jquery",
    ]

4) in component,

import * as $ from 'jquery';

$('#myCarousel').carousel("next");
  

错误:[ts]属性轮播在类型' JQuery'上不存在。

缺少什么?

0 个答案:

没有答案