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
Hi @wessberg, thank you for work on this library.
I want to ask you if it's any chance to add an option for specific exports module resolution.
I have a module that is exporting an object, like this:
const obj = { foo () { return 2 + 2 }, bar: 3, baz: new RegExp('') } module.exports = obj
And in this particular case the resolution needs to be:
export function foo() { return 2 + 2; } export const bar = 3; export const baz = new RegExp(""); export default {foo, bar, baz};
but it's only export into:
const obj = { foo () { return 2 + 2 }, bar: 3, baz: new RegExp('') } export default obj;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @wessberg, thank you for work on this library.
I want to ask you if it's any chance to add an option for specific exports module resolution.
I have a module that is exporting an object, like this:
And in this particular case the resolution needs to be:
but it's only export into:
The text was updated successfully, but these errors were encountered: