Ionic 找不到模块“@ wasome-cordova-plugins/core”或其相应的类型声明

piok6c0g  于 2023-03-16  发布在  Ionic
关注(0)|答案(1)|浏览(275)

我尝试使用Ionic和capacitor的应用内浏览器插件。在Installing and using the plugin as per the documentation之后,我收到以下错误:

[webpack-dev-server] ERROR
node_modules/@awesome-cordova-plugins/in-app-browser/ngx/index.d.ts:1:44 - error TS2307: Cannot find module '@awesome-cordova-plugins/core' or its corresponding type declarations.

1 import { AwesomeCordovaNativePlugin } from '@awesome-cordova-plugins/core';

请注意,我已经安装插件通过:

npm install @awesome-cordova-plugins/core --save

我将Ionic 6.19@capacitor/core 4.6.3angular 15.1.4一起使用

shyt4zoc

shyt4zoc1#

可能是CLI的问题或bug。我只需要重新启动CLI就可以了。
我还注意到,要让awesome-cordova-plugins工作,你必须首先通过npm install @awesome-cordova-plugins/core --save安装核心库。我是在安装了应用内浏览器插件之后才安装的。这可能是我必须重新启动CLI的原因。

相关问题