mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +05:30
18 lines
482 B
Plaintext
18 lines
482 B
Plaintext
{
|
|
"presets": ["react", "flow", "es2015", "es2017", "stage-0"],
|
|
"plugins": [
|
|
["transform-runtime", {"polyfill": false}],
|
|
"transform-function-bind",
|
|
["react-intl", {"messagesDir": "./dist/messages/"}]
|
|
],
|
|
"env": {
|
|
"development": {
|
|
"presets": ["react-hmre"]
|
|
},
|
|
"test": {
|
|
// airbnb some how disables stage-0, so forcing it after airbnb
|
|
"presets": ["airbnb", "stage-0"]
|
|
}
|
|
}
|
|
}
|