1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/.babelrc

36 lines
499 B
Text
Raw Normal View History

{
"presets": [
"es2015",
"react",
[
"env",
{
"loose": true,
"modules": false
}
]
],
2016-11-13 04:13:36 -08:00
"plugins": [
"transform-object-rest-spread",
[
"react-intl",
{
"messagesDir": "./build/messages"
}
]
],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source",
"transform-react-jsx-self"
]
},
"production": {
"plugins": [
"lodash"
]
}
}
}