| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | * |
| 7 | * @flow |
| 8 | */ |
| 9 | |
| 10 | import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags'; |
| 11 | import typeof * as ExportsType from './ReactFeatureFlags.test-renderer'; |
| 12 | |
| 13 | export const alwaysThrottleRetries = false; |
| 14 | export const disableClientCache = true; |
| 15 | export const disableCommentsAsDOMContainers = true; |
| 16 | export const disableInputAttributeSyncing = false; |
| 17 | export const disableLegacyContext = false; |
| 18 | export const disableLegacyContextForFunctionComponents = false; |
| 19 | export const disableLegacyMode = false; |
| 20 | export const disableSchedulerTimeoutInWorkLoop = false; |
| 21 | export const disableTextareaChildren = false; |
| 22 | export const enableAsyncDebugInfo = true; |
| 23 | export const enableAsyncIterableChildren = false; |
| 24 | export const enableFlightWeakThenables = false; |
| 25 | export const enableCPUSuspense = true; |
| 26 | export const enableCreateEventHandleAPI = false; |
| 27 | export const enableBrowserAPI = true; |
| 28 | export const enableMoveBefore = false; |
| 29 | export const enableFizzExternalRuntime = true; |
| 30 | export const enableInfiniteRenderLoopDetection = false; |
| 31 | export const enableInfiniteRenderLoopDetectionForceThrow = false; |
| 32 | export const enableConditionalUseWarning = false; |
| 33 | export const enableLegacyCache = false; |
| 34 | export const enableLegacyFBSupport = false; |
| 35 | export const enableLegacyHidden = false; |
| 36 | export const enableNoCloningMemoCache = false; |
| 37 | export const enableObjectFiber = false; |
| 38 | export const enableProfilerCommitHooks = __PROFILE__; |
| 39 | export const enableProfilerNestedUpdatePhase = __PROFILE__; |
| 40 | export const enableProfilerTimer = __PROFILE__; |
| 41 | export const enableReactTestRendererWarning = false; |
| 42 | export const enableRetryLaneExpiration = false; |
| 43 | export const enableSchedulingProfiler = __PROFILE__; |
| 44 | export const enableComponentPerformanceTrack = false; |
| 45 | export const enablePerformanceIssueReporting = false; |
| 46 | export const enableScopeAPI = false; |
| 47 | export const enableEffectEventMutationPhase = true; |
| 48 | export const enableSuspenseAvoidThisFallback = false; |
| 49 | export const enableSuspenseCallback = false; |
| 50 | export const enableTaint = true; |
| 51 | export const enableTransitionTracing = false; |
| 52 | export const enableTrustedTypesIntegration = true; |
| 53 | export const enableUpdaterTracking = false; |
| 54 | export const passChildrenWhenCloningPersistedNodes = false; |
| 55 | export const retryLaneExpirationMs = 5000; |
| 56 | export const syncLaneExpirationMs = 250; |
| 57 | export const transitionLaneExpirationMs = 5000; |
| 58 | export const enableYieldingBeforePassive = false; |
| 59 | export const enableThrottledScheduling = false; |
| 60 | export const enableViewTransition = true; |
| 61 | export const enableViewTransitionParentEnterExit = false; |
| 62 | export const enableViewTransitionForPersistenceMode = false; |
| 63 | export const enableGestureTransition = false; |
| 64 | export const enableScrollEndPolyfill = true; |
| 65 | export const enableSuspenseyImages = false; |
| 66 | export const enableFizzBlockingRender = true; |
| 67 | export const enableSrcObject = false; |
| 68 | export const enableHydrationChangeEvent = false; |
| 69 | export const enableDefaultTransitionIndicator = true; |
| 70 | export const enableFragmentRefs = false; |
| 71 | export const enableFragmentRefsScrollIntoView = false; |
| 72 | export const enableFragmentRefsInstanceHandles = false; |
| 73 | export const enableFragmentRefsTextNodes = false; |
| 74 | export const ownerStackLimit = 1e4; |
| 75 | export const enableOptimisticKey = false; |
| 76 | export const enableParallelTransitions = true; |
| 77 | |
| 78 | export const eprh_enableUseKeyedStateCompilerLint: boolean = false; |
| 79 | export const eprh_enableVerboseNoSetStateInEffectCompilerLint: boolean = false; |
| 80 | export const eprh_enableExhaustiveEffectDependenciesCompilerLint: |
| 81 | | 'off' |
| 82 | | 'all' |
| 83 | | 'extra-only' |
| 84 | | 'missing-only' = 'off'; |
| 85 | |
| 86 | // Flow magic to verify the exports of this file match the original version. |
| 87 | null as any as ExportsType as FeatureFlagsType as ExportsType; |