-
Notifications
You must be signed in to change notification settings - Fork 0
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
Not working with Nuxt 3 #2
Comments
Thanks for your feedback, I'll take a look😉 |
Can you provide the Minimum Reproduction? The plugin can't use for every import type, the plugin only can resolve the type export in Unit Testing's case like: export interface Foo {
name: string,
} or export default interface Foo {
age: number
} or interface Foo {
age: number
}
export default Foo or export type Foo = {
name: string
age: number
msg: string
labels: unknown
} Other import type will ignore, don't process the vue file. |
This plugin is no longer necessary if you bump Vue v3.3.0 or higher. |
Hi, just used the plugin with Nuxt 3 and still get errors about types imports. My setup is below.
The text was updated successfully, but these errors were encountered: