@winstrike/next-i18next-koa
Version:
The easiest way to translate your NextJs apps. With Koa support only. Forked from 'next-i18next'.
60 lines • 1.06 kB
Plain Text
{
"env": {
"es": {
"presets": [
[
"@babel/env",
{
"modules": false,
"targets": {
"node": "current"
}
}
],
["@babel/preset-react"]
]
},
"cjs": {
"presets": [
["next/babel", {
"transform-runtime": {
"corejs": false,
"helpers": true,
"regenerator": true,
"useESModules": false
},
}]
],
"plugins": [
[
"add-module-exports",
{
"addDefaultProperty": true
}
]
]
},
"test": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
},
"modules": "commonjs"
}
],
["@babel/preset-react"]
],
"plugins": [
[
"add-module-exports",
{
"addDefaultProperty": true
}
]
]
},
}
}