We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How do you guys do something like this? Why it works in case of zod but not in case of mongoose and jasonwebtocket?
{ imports: [ { from: "jsonwebtoken", name: "default", as: "jwt", }, ], presets: [ { from: "zod", imports: ["z"], }, { from: "mongoose", imports: ["model"], } ], }
The text was updated successfully, but these errors were encountered:
and one more question if you don't mind...
How to import types?
Like:
{ from: "h3", imports: ["H3Event", "EventHandlerRequest"], },
Sorry, something went wrong.
@theguriev Have found this example:
// example type import { from: 'vue-router', imports: ['RouteLocationRaw'], type: true, },
So could you try to add an type: true
type: true
No branches or pull requests
Describe the feature
How do you guys do something like this? Why it works in case of zod but not in case of mongoose and jasonwebtocket?
Additional information
The text was updated successfully, but these errors were encountered: