File size: 670 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
{
"presets": [
[
"env",
{
"targets": {
"node": "current"
},
"useBuiltIns": true,
"exclude": [
"babel-plugin-transform-regenerator",
"transform-async-to-generator"
]
}
]
],
"plugins": [
"babel-plugin-transform-class-properties",
["styled-components", { "ssr": true }],
"transform-flow-strip-types",
"transform-object-rest-spread",
"babel-plugin-transform-react-jsx",
"syntax-dynamic-import",
"syntax-async-generators",
"transform-async-generator-functions",
"react-loadable/babel",
"babel-plugin-inline-import-graphql-ast"
]
}
|