如何在离子2中安装和使用jquery?我使用ionic documentation for using third party libs。
我已按照以下步骤操作:
添加 declarations.d.ts 文件:
宣布模块' jquery&#39 ;; 声明模块' jquery-mask-plugin';
但是当我尝试编译应用程序时,我收到了错误:
Runtime Error
Cannot find module "jquery"
在tsconfig文件中:
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
有什么问题?