[Vuejs]-Vue js 3 with TypeScript Cannot find module 'xxxxxx' or its corresponding type declarations

0👍

add to tsconfig.json:

"types": ["node"]

and install @types/node:

npm install --save-dev @types/node

Leave a comment