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
When use esbuild to minify its mangle variable names. Some use case its break the running script for example minify an angularjs app.
Just like terserOptions we can introduce a configuration so we can define what we want to minify.
terserOptions
esbuildOptions.minify = { /** Documentation: https://esbuild.github.io/api/#minify */ minifyWhitespace?: boolean; /** Documentation: https://esbuild.github.io/api/#minify */ minifyIdentifiers?: boolean; /** Documentation: https://esbuild.github.io/api/#minify */ minifySyntax?: boolean; }
No response
The text was updated successfully, but these errors were encountered:
Very similar to #6065, but I think being able to have one less option is a plus. And would be fixed by #6178, so I'll close in favour of that instead.
Sorry, something went wrong.
No branches or pull requests
Clear and concise description of the problem
When use esbuild to minify its mangle variable names. Some use case its break the running script for example minify an angularjs app.
Suggested solution
Just like
terserOptions
we can introduce a configuration so we can define what we want to minify.Alternative
No response
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: