1👍
✅
I believe the issue you’re facing is due to having ./**/*.d.ts
as part of your exclude
array in tsconfig.json
. You’re essentially telling Typescript to ignore your definition files, so your definition within Shims-vue.d.ts
is not being imported.
Moving ./**/*.d.ts
to include
within tsconfig.json
should fix this for you.
Aside from that, everything else looks good to me.
Source:stackexchange.com