I\'m using babel 6 for react JSX transforms. However I\'m not using the react preset, I am ONLY using the \'transform-react-jsx\' plugin (and trying strict-m
According to this line, the strictMode option is indeed parsed.
strictMode
I don't understand the syntax you used for your .babelrc, though. Why an array?
Try this:
{ "plugins": [ ["transform-react-jsx"] ], "sourceMaps": true, "strictMode": false }