1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/source/.babelrc
2018-05-24 18:48:01 +02:00

24 lines
492 B
Text

{
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
},
"modules": false
}
],
"@babel/react",
"@babel/flow"
],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }],
"transform-do-expressions",
"@babel/plugin-proposal-object-rest-spread",
"transform-class-properties",
"syntax-dynamic-import",
"react-hot-loader/babel",
["webpack-alias", { "config": "./source/webpack.dev.js" }]
]
}