17 lines
491 B
JavaScript
17 lines
491 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
*/
|
|
|
|
export const enableSchedulerDebugging = false;
|
|
export const enableIsInputPending = false;
|
|
export const enableProfiling = false;
|
|
export const enableIsInputPendingContinuous = false;
|
|
export const frameYieldMs = 5;
|
|
export const continuousYieldMs = 50;
|
|
export const maxYieldMs = 300;
|