slate/.babelrc

24 lines
304 B
Plaintext
Raw Normal View History

2020-02-19 09:30:47 +03:00
{
"presets": [
[
"next/babel",
{
"transform-runtime": {
"useESModules": false
}
}
],
2020-07-03 18:32:36 +03:00
"@emotion/babel-preset-css-prop"
2020-02-19 09:30:47 +03:00
],
"plugins": [
2020-07-03 18:32:36 +03:00
[
"module-resolver",
{
"alias": {
"~": "./"
}
2020-02-19 09:30:47 +03:00
}
2020-07-03 18:32:36 +03:00
]
2020-02-19 09:30:47 +03:00
]
}