react/.babelrc

29 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-02-27 08:49:32 +08:00
{
"presets": ["react"],
"ignore": ["third_party"],
"plugins": [
"transform-class-properties",
2016-02-27 08:49:32 +08:00
"syntax-trailing-function-commas",
"transform-object-rest-spread",
2016-02-27 08:49:32 +08:00
"transform-es2015-template-literals",
"transform-es2015-literals",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
["transform-es2015-classes", { "loose": true }],
"transform-es2015-object-super",
"transform-es2015-shorthand-properties",
"transform-es2015-computed-properties",
"transform-es2015-for-of",
"check-es2015-constants",
["transform-es2015-spread", { "loose": true }],
"transform-es2015-parameters",
["transform-es2015-destructuring", { "loose": true }],
["transform-es2015-block-scoping", { "throwIfClosureRequired": true }],
2016-02-27 08:49:32 +08:00
"transform-es2015-modules-commonjs",
"transform-es3-member-expression-literals",
"transform-es3-property-literals",
"./scripts/babel/transform-object-assign-require",
"transform-react-jsx-source"
2016-02-27 08:49:32 +08:00
]
}