@ babel / preset-env示例
与通天塔7
主要文档: :
@ babel / polyfill文档: :
浏览器列表: :
# .browserslistrc
> 1% in FR
// babel.config.js
module . exports = {
presets : [
[
'@babel/preset-env' ,
{
useBuiltIns : 'entry' ,
debug : true
}
]
]
} ;
// First line inside your app (App.js for this example)
// Not needed with useBuiltIns: 'usage'
//import '@babel/polyfill'
发现
指定文件.browserslistrc而不是babel.config.js browsers: [...] :将由Autoprefixer和其他工具重用
useBuiltIns: 'usage
评论0
最新资源