我做了以下事情,
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'上不存在。
缺少什么?