Is there any way to enable other TypeScript plugins in .vue
files?
#483
-
Is there any way to enable other TypeScript plugins in
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-vue-plugin"
},
{
"name": "typescript-other-plugin"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
johnsoncodehk
Sep 13, 2021
Replies: 1 comment 2 replies
-
It depends on what functions other plug-ins provide. Due to the design limitation of TS Plugin, when multiple TS Plugins are set at the same time, the same functions will cover each other instead of cooperating with each other, so it usually does not work as you expect. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
johnsoncodehk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It depends on what functions other plug-ins provide. Due to the design limitation of TS Plugin, when multiple TS Plugins are set at the same time, the same functions will cover each other instead of cooperating with each other, so it usually does not work as you expect.