I'm currently using browserify with reactify plugin to compile jsx code for ReactJS components. This allows me to use certain subset of ES6 in the code (arrow functions, string interpolation etc).
Is there a possibility to use full ES6 (having it compiled down to ES5) with JSX? I think I can't just run ES6TO5 on JSX files before they are processed because of syntax error. Running reactify on ES6 code will give syntax error, I believe also.
Is there a way to use full ES6 with ReactJS and JSX?