mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 10:45:04 +00:00
c7ed03a95c
Reviewed By: fkgozali, sebmarkbage Differential Revision: D6839001 fbshipit-source-id: 47b8278e883c33ca1f359dd16614f86c292e972d
19 lines
436 B
JavaScript
19 lines
436 B
JavaScript
/**
|
|
* 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';
|
|
|
|
const ReactFeatureFlags = {
|
|
debugRenderPhaseSideEffects: false,
|
|
debugRenderPhaseSideEffectsForStrictMode: false,
|
|
warnAboutDeprecatedLifecycles: false,
|
|
};
|
|
|
|
module.exports = ReactFeatureFlags;
|