[Vuejs]-How to get Vite, TS, and Vue to properly work in vs-code

0πŸ‘

βœ…

in your tsconfig.json
try to replace your include with this one here:

"include": [
    "src/**/*.ts",
    "src/**/*.d.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "styles.d.ts"
  ],

Leave a comment