Files
streamwall/babel.config.json
2020-06-18 11:02:11 -07:00

26 lines
423 B
JSON

{
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs",
"targets": {
"electron": "9",
"node": true
}
}
]
],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"babel-plugin-styled-components",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
]
}