lbry-desktop/.babelrc

13 lines
374 B
Text
Raw Normal View History

2019-03-04 23:46:57 -05:00
{
"presets": ["@babel/react", "@babel/flow"],
"plugins": [
2019-04-03 00:56:58 -05:00
"import-glob",
"@babel/plugin-transform-runtime",
2019-03-26 23:40:02 -05:00
"@babel/plugin-syntax-dynamic-import",
2019-03-05 00:24:03 -06:00
"react-hot-loader/babel",
2019-03-06 12:04:26 -05:00
["@babel/plugin-proposal-decorators", { "decoratorsBeforeExport": true }],
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-proposal-class-properties",
2019-03-04 23:46:57 -05:00
]
}