mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
24 lines
386 B
Plaintext
24 lines
386 B
Plaintext
{
|
|
"presets": [
|
|
"react",
|
|
"flow"
|
|
],
|
|
"plugins": [
|
|
"transform-object-rest-spread",
|
|
"transform-decorators-legacy"
|
|
],
|
|
"env": {
|
|
"development": {
|
|
"plugins": [
|
|
"react-hot-loader/babel"
|
|
]
|
|
},
|
|
"test": {
|
|
"presets": [
|
|
"es2015",
|
|
"flow" // We need to add this again because it has to run before es2015
|
|
]
|
|
}
|
|
}
|
|
}
|