Permalink
Please sign in to comment.
Showing
with
64 additions
and 31 deletions.
- +25 −0 .babelrc
- +4 −1 .eslintrc
- +3 −11 gulpfile.js
- +23 −4 package.json
- +9 −15 scripts/jest/preprocessor.js
25
.babelrc
@@ -0,0 +1,25 @@ | ||
+{ | ||
+ "presets": ["react"], | ||
+ "ignore": ["third_party"], | ||
+ "plugins": [ | ||
+ "fbjs-scripts/babel-6/dev-expression", | ||
+ "syntax-trailing-function-commas", | ||
+ "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", | ||
+ "transform-es2015-modules-commonjs", | ||
+ "transform-es3-member-expression-literals", | ||
+ "transform-es3-property-literals" | ||
+ ] | ||
+} |
5
.eslintrc
14
gulpfile.js
27
package.json
24
scripts/jest/preprocessor.js
0 comments on commit
1365498