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. const {enableProfiling: enableProfilingFeatureFlag} =
    
  11.   // $FlowFixMe[cannot-resolve-module]
    
  12.   require('SchedulerFeatureFlags');
    
  13. 
    
  14. export const enableSchedulerDebugging = true;
    
  15. export const enableProfiling: boolean =
    
  16.   __PROFILE__ && enableProfilingFeatureFlag;
    
  17. export const enableIsInputPending = true;
    
  18. export const enableIsInputPendingContinuous = true;
    
  19. export const frameYieldMs = 5;
    
  20. export const continuousYieldMs = 10;
    
  21. export const maxYieldMs = 10;