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
Is your feature request related to a problem? Please describe.
esbuild plugins can have options. In that case they are functions which returns the plugin. Like this:
require("esbuild").build({ // ... plugins: [require("my-plugin")(options)], // ... })
Describe the solution you'd like
It would be cool to have a similar configuration options like nx.
{ "plugins": ["without-options", { "path" : "with-options", "options" : {}}] }
Describe alternatives you've considered The only alternative I could imagine is having a wrapper file, that does configuration.
I could provide a PR, if that helps.
The text was updated successfully, but these errors were encountered:
Sounds good to me, @arturovt what’s your take on it?
Sorry, something went wrong.
@spike-rabbit I think you can go ahead and submit a PR. LMK if you need any help.
I’m a bit busy with fixing the TS resolution issue.
No branches or pull requests
Is your feature request related to a problem? Please describe.
esbuild plugins can have options. In that case they are functions which returns the plugin.
Like this:
Describe the solution you'd like
It would be cool to have a similar configuration options like nx.
Describe alternatives you've considered
The only alternative I could imagine is having a wrapper file, that does configuration.
I could provide a PR, if that helps.
The text was updated successfully, but these errors were encountered: