We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
useBuiltIns
false
1 parent 3dcf3c6 commit a9ac1a9Copy full SHA for a9ac1a9
packages/@vue/babel-preset-app/index.js
@@ -17,7 +17,7 @@ module.exports = (context, options = {}) => {
17
const envOptions = {
18
modules: options.modules || false,
19
targets: options.targets,
20
- useBuiltIns: options.useBuiltIns || 'usage'
+ useBuiltIns: typeof options.useBuiltIns === 'undefined' ? 'usage' : options.useBuiltIns
21
}
22
delete envOptions.jsx
23
// target running node version (this is set by unit testing plugins)
0 commit comments