Replies: 1 comment 1 reply
-
Does the method of filtering specific plugins work for your use case? const wrantedPlugins = new Set([
'css',
'html',
'json',
// ...
]);
const plugins = getFullLanguageServicePlugins(ts).filter(plugin => wrantedPlugins.has(plugin.name!)); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to simply expand the script/style language in the vue SFC, but it is not very convenient to reuse it at present, because only a full function including template is exported, and it is expected to be freely combined
Beta Was this translation helpful? Give feedback.
All reactions