insomnia/packages/insomnia-app/.babelrc

39 lines
739 B
Plaintext

{
"presets": [
"@babel/preset-react",
"@babel/preset-flow"
],
"plugins": [
"babel-plugin-styled-components",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
["@babel/plugin-proposal-class-properties", { "loose" : true }],
"@babel/plugin-proposal-optional-chaining"
],
"env": {
"development": {
"plugins": [
"react-hot-loader/babel"
]
},
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
],
// We need to add this again because it has to run before es2015
"@babel/preset-flow"
]
}
}
}