Files
Airframe-React/.babelrc
2019-08-15 00:54:44 +02:00

19 lines
404 B
Plaintext
Executable File

{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
"universal-import",
"react-hot-loader/babel"
],
"env": {
"development": {
"plugins": [
"react-hot-loader/babel"
]
}
}
}