首页 > 其他分享 >Could not find a declaration file for module ‘xxx‘ (vue3+ts)

Could not find a declaration file for module ‘xxx‘ (vue3+ts)

时间:2023-02-02 17:46:25浏览次数:52  
标签:qs Could xxx ts module file vue3 find

vue3 + ts框架搭建过程中遇到 引入三方qs库 出现eslitn提示 'Could not find a declaration file for module ‘qs‘';

解决方案

方案1:
npm i --save-dev @types/qs 此处可延伸为所有三方库

方案2:
src目录下新建shims-vue.d.ts文件,添加 declare module 'qs'

标签:qs,Could,xxx,ts,module,file,vue3,find
From: https://www.cnblogs.com/yejingxiao/p/17086365.html

相关文章