28 lines
499 B
JSON
28 lines
499 B
JSON
|
{
|
||
|
"presets": [
|
||
|
[
|
||
|
"@babel/preset-env",
|
||
|
{
|
||
|
"targets": {
|
||
|
"node": "current"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
"@babel/preset-react",
|
||
|
{
|
||
|
"runtime": "automatic"
|
||
|
}
|
||
|
],
|
||
|
"@babel/preset-typescript"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"babel-plugin-styled-components",
|
||
|
"@babel/plugin-proposal-class-properties",
|
||
|
"@babel/plugin-proposal-optional-chaining",
|
||
|
"@babel/plugin-proposal-nullish-coalescing-operator",
|
||
|
"@babel/plugin-proposal-object-rest-spread",
|
||
|
"@babel/plugin-syntax-dynamic-import"
|
||
|
]
|
||
|
}
|