You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/.babelrc

38 lines
808 B

7 years ago
{
"presets": [
["env", {
"useBuiltIns": true,
"loose": true
}],
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread",
"transform-flow-strip-types",
["transform-runtime", {
"polyfill": false,
"regenerator": true
}]
],
"env": {
"development-connect": {
"plugins": [
"react-hot-loader/babel",
[
"babel-plugin-webpack-alias",
{ "config": "./webpack/webpack.config.connect.js", "findConfig": true }
]
]
},
"development-library": {
"plugins": [
"react-hot-loader/babel",
[
"babel-plugin-webpack-alias",
{ "config": "./webpack/webpack.config.library.js", "findConfig": true }
]
]
}
}
}