We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
import from module with name starting with type leads to unresolved import error.
type
import {ValueOf} from 'type-fest' for example trigger
import {ValueOf} from 'type-fest'
error Unable to resolve path to module 'type-fest' import/no-unresolved
The text was updated successfully, but these errors were encountered:
one way to solve this is to use import type
import type
import type {ValueOf} from 'type-fest'
but that should not be necessary because update to 2.25 from 2.24 is semver minor so not breaking.
Sorry, something went wrong.
Duplicate of #2267.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
import from module with name starting with
type
leads to unresolved import error.import {ValueOf} from 'type-fest'
for example triggerThe text was updated successfully, but these errors were encountered: