mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
25 lines
485 B
JavaScript
25 lines
485 B
JavaScript
|
module.exports = function (api) {
|
||
|
api.cache(false)
|
||
|
return {
|
||
|
presets: [
|
||
|
[
|
||
|
'@babel/preset-env',
|
||
|
{
|
||
|
targets: {
|
||
|
browsers: [
|
||
|
'chrome >= 58',
|
||
|
'firefox >= 60',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
'@babel/preset-react',
|
||
|
],
|
||
|
plugins: [
|
||
|
'@babel/plugin-transform-runtime',
|
||
|
'@babel/plugin-proposal-class-properties',
|
||
|
'@babel/plugin-proposal-object-rest-spread',
|
||
|
],
|
||
|
}
|
||
|
}
|