2017-11-29 18:12:57 +00:00
|
|
|
/**
|
|
|
|
* 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';
|
|
|
|
|
2018-01-29 22:17:07 +00:00
|
|
|
const ReactFeatureFlags = {
|
2017-11-29 18:12:57 +00:00
|
|
|
debugRenderPhaseSideEffects: false,
|
2018-01-30 16:47:02 +00:00
|
|
|
debugRenderPhaseSideEffectsForStrictMode: false,
|
2018-01-29 22:17:07 +00:00
|
|
|
warnAboutDeprecatedLifecycles: false,
|
2017-11-29 18:12:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = ReactFeatureFlags;
|