Error TS7016: Could not find a declaration file for module… implicitly has an ‘any’ type
Well in this post am going to share my experience with the error
Working with typescript and Vue this error above kept popping up. Well the installation was as recommend in the Vue Typescript documentation . This was done accordingly, but one may make the same mistake as I did. Vue recommendation states at least noImplicitThis: true which is a part of strict flag) the problem here was mistaking noImplicitThis to noImplicitAny.
This is how the solution should be set in your typescript.json file
Change the code in the snippet below
If this does not work for you please, then your solutions lies to these to the reference below
Happy debugging…