2017-11-29 07:16:53 +08: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';
|
|
|
|
|
|
2017-12-11 23:52:46 +08:00
|
|
|
const ReactFeatureFlags = {
|
2017-11-29 07:16:53 +08:00
|
|
|
debugRenderPhaseSideEffects: false,
|
2018-01-30 08:11:18 +08:00
|
|
|
debugRenderPhaseSideEffectsForStrictMode: false,
|
2018-02-09 02:48:18 +08:00
|
|
|
warnAboutDeprecatedLifecycles: true,
|
2017-11-29 07:16:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = ReactFeatureFlags;
|