mon-entreprise/source/.babelrc

21 lines
478 B
Plaintext
Raw Normal View History

2016-06-29 10:27:04 +00:00
{
"presets": [
["@babel/env", {
2017-03-14 14:00:54 +00:00
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
},
"modules": false
2017-03-14 14:00:54 +00:00
}],
"@babel/react"
2016-06-29 16:57:56 +00:00
],
"plugins": [
"@babel/plugin-proposal-decorators",
2017-03-14 14:00:54 +00:00
"transform-do-expressions",
"@babel/plugin-proposal-object-rest-spread",
"transform-class-properties",
"syntax-dynamic-import",
"react-hot-loader/babel",
["webpack-alias", { "config": "./source/webpack.config.js" }]
2016-06-29 10:27:04 +00:00
]
}