Im trying to import my external library with Vue 3 and Typescript
Typescript says it can't find the declaration file in my library index.js, but since i use this library for different projects (Vue 2 and projects without Typescript) I dont really want to change it all that much.
Is there any way to let Typescript ignore this index.js or should I start refactoring my Library to Typescript?
import {
MyText,
} from '@myapp/vue-components';
export const registerComponents = (app: App): void => {
app.component(MyText)
}