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
should go through all the fields in the order defined and look for:
fields
file.path === path
file.path.replace(/\.\w+$/, '') === path
file.path.replace(/\/index\.\w+$/, '') === path
making it extension-agnostic unlike node's ['', '.js', '.json', '/index.js'] lookup, which this builder currently does
['', '.js', '.json', '/index.js']
The text was updated successfully, but these errors were encountered:
if you have this directory structure:
foo.js foo/ index.js
require("./foo") would match the file and not the directory is that desired?
Sorry, something went wrong.
No branches or pull requests
should go through all the
fields
in the order defined and look for:file.path === path
file.path.replace(/\.\w+$/, '') === path
file.path.replace(/\/index\.\w+$/, '') === path
making it extension-agnostic unlike node's
['', '.js', '.json', '/index.js']
lookup, which this builder currently doesThe text was updated successfully, but these errors were encountered: