mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
5e80d95e03
Reviewed By: bvaughn Differential Revision: D6953225 fbshipit-source-id: f96e3cec57cce397d46d49115dd3734a33427992
19 lines
435 B
JavaScript
19 lines
435 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: true,
|
|
};
|
|
|
|
module.exports = ReactFeatureFlags;
|