You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+
1. Disable the built-in TypeScript Extension
16
+
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
19
+
20
+
## Customize configuration
21
+
22
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
0 commit comments