-
-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(vscode): automatically enable Hybrid Mode #4206
Conversation
bierner.lit-html |
The setting for this is |
I got the message that |
@rogadev You can disable |
@Peruibeloko Did you find that installed |
@johnsoncodehk I'll do some testing tomorrow on a clean project using |
@k-paxian It is known that |
…`(>=108.4.0) Refs #4206
Same as @Soviut, I have the message about |
@Kerumen I think the extension ID of |
@Kerumen I think the extension ID of `jpoissonnier.vscode-styled-components` has been changed to `styled-components.vscode-styled-components`, have you installed that extension? Maybe in the past but I don't have it installed anymore. I tried to reinstall / uninstall it and it still displays the same message. |
Literally any VSCode window I open I get a message
Not only for vue projects, but for literally any VSCode window I open. And I don't even have that "incompatible plugin" installed... |
This 👆 |
I am getting the same Hybrid Mode is disabled automatically because there is a potentially incompatible GitHub.copilot-chat TypeScript plugin installed. |
same here |
3 similar comments
same here |
same here |
same here |
Same issue with Copilot Chat |
Hybrid Mode is disabled automatically because there is a potentially incompatible GitHub.copilot-chat TypeScript plugin installed. |
Maybe the fix of copilot warning is coming. |
Stop pollute this thread. One or two messages on this problem were enough. Wait for the fix and turn on HybridMode to true explicitly for now |
VSC alert !! Hybrid Mode is disabled automatically because there is a pootencially incompatible GitHub.copilot-chat Typescript plugin installed. |
Put this setting to explicitly enable hybrid mode and bypass the warning: {
"vue.server.hybridMode": true
} |
Closes #4131
This introduces the default value of
"auto"
forvue.server.hybridMode
, which automatically enables it based on the compatibility of installed TS plugin extensions with Hybrid Mode.Currently known compatibility
If you know of any other compatible TS plugin extensions, please report them here so that we can update the whitelist.
To verify compatibility, simply set
"vue.server.hybridMode": true
in your VSCode settings and reload VSCode to check if TS support in .vue files is working as expected.