1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 01:08:27 +00:00
trezor-wallet/.babelrc

22 lines
501 B
Plaintext
Raw Normal View History

2017-12-13 11:01:37 +00:00
{
"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
}],
2018-07-30 11:52:06 +00:00
["babel-plugin-root-import", {
"rootPathSuffix": "./src",
"rootPathPrefix": "~"
}]
]
2017-12-13 11:01:37 +00:00
}