Doodle3D-Core/.babelrc

18 lines
390 B
Plaintext
Raw Normal View History

2017-10-24 12:33:14 +02:00
{
2017-11-06 11:51:46 +01:00
"presets": [
["env", {
"targets": { node: "6" },
"modules": false
}],
"react"
],
2017-10-24 12:33:14 +02:00
"plugins": [
2017-11-06 10:33:02 +01:00
"babel-plugin-transform-regenerator",
2017-10-24 12:33:14 +02:00
"babel-plugin-transform-object-rest-spread",
2017-10-24 12:46:16 +02:00
"babel-plugin-inline-import",
"babel-plugin-transform-class-properties",
"babel-plugin-transform-es2015-classes",
"babel-plugin-syntax-dynamic-import"
2017-10-24 12:33:14 +02:00
]
}