diff --git a/scripts/rollup/shims/react-native/ReactFeatureFlags.js b/scripts/rollup/shims/react-native/ReactFeatureFlags.js new file mode 100644 index 0000000000000..276dc914254c5 --- /dev/null +++ b/scripts/rollup/shims/react-native/ReactFeatureFlags.js @@ -0,0 +1,16 @@ +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @providesModule ReactFeatureFlags + */ + +'use strict'; + +var ReactFeatureFlags = { + debugRenderPhaseSideEffects: false, +}; + +module.exports = ReactFeatureFlags;