mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
19 lines
474 B
JSON
19 lines
474 B
JSON
{
|
|
"presets": [
|
|
["@babel/preset-env", { "targets": { "node": "current" } }]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator",
|
|
"babel-plugin-styled-components",
|
|
[
|
|
"@babel/plugin-transform-react-jsx",
|
|
{
|
|
"pragma": "h",
|
|
"pragmaFrag": "Fragment"
|
|
}
|
|
],
|
|
["@babel/plugin-proposal-decorators", { "legacy": false, "decoratorsBeforeExport": true }]
|
|
]
|
|
}
|