mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
'use strict';
|
|
|
|
// these are added as they are handled by rollup in some cases
|
|
const propertyMangleWhitelist = [
|
|
// React
|
|
'React',
|
|
'ReactDOM',
|
|
];
|
|
|
|
module.exports = {
|
|
propertyMangleWhitelist,
|
|
};
|