mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
'use strict';
|
|
|
|
const devExpressionWithCodes = require('../error-codes/dev-expression-with-codes');
|
|
|
|
const babelOptsReact = {
|
|
plugins: [
|
|
devExpressionWithCodes, // this pass has to run before `rewrite-modules`
|
|
],
|
|
};
|
|
|
|
module.exports = {
|
|
babelOptsReact,
|
|
};
|