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
Current webpack .babelrc.js set userBuiltIns to true
userBuiltIns
true
module.exports = () => { return { // ... "presets": [ [ "env", { // ... "useBuiltIns": true } ] ] } }
But preset-env's useBuitIns only has three options: "usage", "entry", or false.
useBuitIns
"usage"
"entry"
false
babel/babel#6830 https://babeljs.io/docs/en/next/babel-preset-env.html#usebuiltins
I suspect the current "useBuiltIns": true has same effect as "useBuiltIns": false.
"useBuiltIns": true
"useBuiltIns": false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current webpack .babelrc.js set
userBuiltIns
totrue
But preset-env's
useBuitIns
only has three options:"usage"
,"entry"
, orfalse
.babel/babel#6830
https://babeljs.io/docs/en/next/babel-preset-env.html#usebuiltins
I suspect the current
"useBuiltIns": true
has same effect as"useBuiltIns": false
.The text was updated successfully, but these errors were encountered: