[Vuejs]-TS2307: Cannot find module '@/components/helper/utils/SimpleUtil.vue' or its corresponding type declarations

0👍

This is the way that I declare paths in my jsconfig.json and it works for me:

"compilerOptions": {
   "paths": {
     "~/*": ["./*"],
     "@/*": ["./*"],
     "~~/*": ["./*"],
     "@@/*": ["./*"]
   }
 },

For more information you can check Nuxt TypeScript

Leave a comment