mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
1f9e3b89d4
* Add plugin-proposal-optional-chaining * Use optional chaining to provide error fallback
26 lines
537 B
JavaScript
26 lines
537 B
JavaScript
module.exports = function (api) {
|
|
api.cache(false)
|
|
return {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
browsers: [
|
|
'chrome >= 58',
|
|
'firefox >= 56.2',
|
|
],
|
|
},
|
|
},
|
|
],
|
|
'@babel/preset-react',
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
],
|
|
}
|
|
}
|