Skip to content

Commit

Permalink
fix discussion
Browse files Browse the repository at this point in the history
  • Loading branch information
vankop committed Feb 4, 2022
1 parent b254f35 commit 75838c3
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions lib/config/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -921,15 +921,11 @@ const applyOutputDefaults = (
);
F(output.environment, "forOf", () => tp && optimistic(tp.forOf));
F(output.environment, "bigIntLiteral", () => tp && tp.bigIntLiteral);
F(
output.environment,
"dynamicImport",
() => tp && conditionallyOptimistic(tp.dynamicImport, output.module)
F(output.environment, "dynamicImport", () =>
conditionallyOptimistic(tp && tp.dynamicImport, output.module)
);
F(
output.environment,
"module",
() => tp && conditionallyOptimistic(tp.module, output.module)
F(output.environment, "module", () =>
conditionallyOptimistic(tp && tp.module, output.module)
);

const { trustedTypes } = output;
Expand Down

0 comments on commit 75838c3

Please sign in to comment.