Module augmentation is not working in .vue file Module augmentation is not working in .vue file typescript typescript

Module augmentation is not working in .vue file


Try to add types/*.d.ts to typeRoots in yout tsconfig

Like this:

"typeRoots": [        "src/types"    ],

(Normally I use @types to store my .d.ts files)