mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Fix dead code elimination for feature flags
Turning flags into named exports fixes dead code elimination.
This required some restructuring of how we verify that flag types match up. I used the Check<> trick combined with import typeof, as suggested by @calebmer.
For www, we can no longer re-export `require('ReactFeatureFlags')` directly, and instead destructure it. This means flags have to be known at init time. This is already the case so it's not a problem. In fact it may be better since it removes extra property access in tight paths.
For things that we *want* to be dynamic on www (currently, only performance flag) we can export a function to toggle it, and then put it on the secret exports. In fact this is better than just letting everyone mutate the flag at arbitrary times since we can provide, e.g., a ref counting interface to it.
* Record sizes
23 lines
718 B
JavaScript
23 lines
718 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.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
export const enableAsyncSubtreeAPI = true;
|
|
export const enableAsyncSchedulingByDefaultInReactDOM = false;
|
|
// Exports React.Fragment
|
|
export const enableReactFragment = false;
|
|
// Exports ReactDOM.createRoot
|
|
export const enableCreateRoot = false;
|
|
|
|
// Mutating mode (React DOM, React ART, React Native):
|
|
export const enableMutatingReconciler = true;
|
|
// Experimental noop mode (currently unused):
|
|
export const enableNoopReconciler = false;
|
|
// Experimental persistent mode (CS):
|
|
export const enablePersistentReconciler = false;
|