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