v1/packages/roleypoly-design/.babelrc

34 lines
No EOL
474 B
Text

{
"presets": [
"next/babel",
"@zeit/next-typescript/babel"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"helpers": false
}
],
[
"styled-components",
{
"ssr": true
}
],
],
"env": {
"test": {
"presets": [
[
"next/babel",
{
"preset-env": {
"modules": "commonjs"
}
}
]
]
}
}
}