lbry-desktop/.babelrc

13 lines
374 B
Plaintext
Raw Normal View History

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