rsnext/examples/with-ioc/.babelrc

17 lines
387 B
Text
Raw Normal View History

{
"env": {
"development": {
"presets": ["next/babel"],
"plugins": ["transform-decorators-legacy"]
},
"production": {
"presets": ["next/babel"],
"plugins": ["transform-decorators-legacy"]
},
"test": {
"presets": [["next/babel", { "preset-env": { "modules": "commonjs" } }]],
"plugins": ["transform-decorators-legacy"]
}
}
}