File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export const warnAboutSpreadingKeyToJSX = __VARIANT__;
17
17
export const enableComponentStackLocations = __VARIANT__ ;
18
18
export const disableInputAttributeSyncing = __VARIANT__ ;
19
19
export const enableFilterEmptyStringAttributesDOM = __VARIANT__ ;
20
- export const enableModernEventSystem = __VARIANT__ ;
21
20
export const enableLegacyFBSupport = __VARIANT__ ;
22
21
export const enableDebugTracing = ! __VARIANT__ ;
23
22
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ export const {
21
21
disableSchedulerTimeoutBasedOnReactExpirationTime,
22
22
warnAboutSpreadingKeyToJSX,
23
23
replayFailedUnitOfWorkWithInvokeGuardedCallback,
24
- enableModernEventSystem,
25
24
enableFilterEmptyStringAttributesDOM,
26
25
enableLegacyFBSupport,
27
26
enableDebugTracing,
@@ -73,6 +72,8 @@ export const disableTextareaChildren = __EXPERIMENTAL__;
73
72
74
73
export const warnUnstableRenderSubtreeIntoContainer = false ;
75
74
75
+ export const enableModernEventSystem = true ;
76
+
76
77
// Enable forked reconciler. Piggy-backing on the "variant" global so that we
77
78
// don't have to add another test dimension. The build system will compile this
78
79
// to the correct value.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const importSideEffects = Object.freeze({
16
16
'react-dom/server' : HAS_NO_SIDE_EFFECTS_ON_IMPORT ,
17
17
'react/jsx-dev-runtime' : HAS_NO_SIDE_EFFECTS_ON_IMPORT ,
18
18
'react-fetch/node' : HAS_NO_SIDE_EFFECTS_ON_IMPORT ,
19
+ 'react-dom' : HAS_NO_SIDE_EFFECTS_ON_IMPORT ,
19
20
} ) ;
20
21
21
22
// Bundles exporting globals that other modules rely on.
You can’t perform that action at this time.
0 commit comments