Skip to content

Commit 75838c3

Browse files
committed
fix discussion
1 parent b254f35 commit 75838c3

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

lib/config/defaults.js

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -921,15 +921,11 @@ const applyOutputDefaults = (
921921
);
922922
F(output.environment, "forOf", () => tp && optimistic(tp.forOf));
923923
F(output.environment, "bigIntLiteral", () => tp && tp.bigIntLiteral);
924-
F(
925-
output.environment,
926-
"dynamicImport",
927-
() => tp && conditionallyOptimistic(tp.dynamicImport, output.module)
924+
F(output.environment, "dynamicImport", () =>
925+
conditionallyOptimistic(tp && tp.dynamicImport, output.module)
928926
);
929-
F(
930-
output.environment,
931-
"module",
932-
() => tp && conditionallyOptimistic(tp.module, output.module)
927+
F(output.environment, "module", () =>
928+
conditionallyOptimistic(tp && tp.module, output.module)
933929
);
934930

935931
const { trustedTypes } = output;

0 commit comments

Comments
 (0)