slate/.babelrc

23 lines
287 B
Plaintext
Raw Normal View History

2020-02-19 09:30:47 +03:00
{
"presets": [
[
"next/babel",
{
"transform-runtime": {
"useESModules": false
}
}
]
],
"plugins": [
["emotion", {
"inline": true
}],
["module-resolver", {
"alias": {
"~": "./"
}
}]
]
}