Doodle3D-Core/.babelrc

26 lines
542 B
Plaintext
Raw Normal View History

2017-10-24 12:33:14 +02:00
{
"env": {
"module": {
"presets": [
["env", {
2017-11-13 17:01:00 +01:00
"targets": { "node": "6" },
"modules": false
}],
2017-11-06 11:58:00 +01:00
"stage-0",
"react"
]
},
"main": {
2017-11-14 02:35:52 +01:00
"presets": ["env", "stage-0", "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
]
}