File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
packages/scheduler/src/forks Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
export const enableProfiling = __VARIANT__ ;
15
15
16
+ export const enableIsInputPending = __VARIANT__ ;
17
+ export const enableIsInputPendingContinuous = __VARIANT__ ;
18
+ export const frameYieldMs = 5 ;
19
+ export const continuousYieldMs = 10 ;
20
+ export const maxYieldMs = 10 ;
21
+
16
22
export const userBlockingPriorityTimeout = 250 ;
17
23
export const normalPriorityTimeout = 5000 ;
18
24
export const lowPriorityTimeout = 10000 ;
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ export const {
16
16
userBlockingPriorityTimeout,
17
17
normalPriorityTimeout,
18
18
lowPriorityTimeout,
19
+ enableIsInputPending,
20
+ enableIsInputPendingContinuous,
21
+ frameYieldMs,
22
+ continuousYieldMs,
23
+ maxYieldMs,
19
24
} = dynamicFeatureFlags ;
20
25
export const enableSchedulerDebugging = true ;
21
26
export const enableProfiling : boolean =
22
27
__PROFILE__ && enableProfilingFeatureFlag ;
23
- export const enableIsInputPending = true ;
24
- export const enableIsInputPendingContinuous = true ;
25
- export const frameYieldMs = 5 ;
26
- export const continuousYieldMs = 10 ;
27
- export const maxYieldMs = 10 ;
You can’t perform that action at this time.
0 commit comments