-
-
Notifications
You must be signed in to change notification settings - Fork 171
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
no-missing-imports
does not support "exports" in package.json
#255
Labels
Comments
There can be also "imports": {
"#abc/*": "./abc/out/*"
} import x from '#abc/file' |
Any progress on this? The missing support of "exports" e.g. creates a false positive when using got for fetching web resources. |
This is implemented in a fork of this package: eslint-community#4. Mysticatea has not been seen for quite a while (which is OK!) so a few people decided to fork and continue developing in the fork. |
caugner
added a commit
to mdn/yari
that referenced
this issue
Apr 28, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 3, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 3, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 16, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 30, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 30, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 30, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
caugner
added a commit
to mdn/yari
that referenced
this issue
May 31, 2022
brettz9
pushed a commit
to brettz9/eslint-plugin-node
that referenced
this issue
Jul 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When checking for existence of an import, the new "exports" field is not checked.
Example:
If package
foo
has thispackage.json
:Then importing it (or requiring it) via
yields a
no-missing-import
error, when in fact it works (Node >= 12.x).The text was updated successfully, but these errors were encountered: