Skip to content

Commit

Permalink
fix(init): add dom.iterable to template compilerOptions.lib (#2656)
Browse files Browse the repository at this point in the history
  • Loading branch information
timreichen authored Oct 1, 2024
1 parent e0f6531 commit 182bda5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ if (Deno.args.includes("build")) {
"@preact/signals": `npm:@preact/signals@^${PREACT_SIGNALS_VERSION}`,
} as Record<string, string>,
compilerOptions: {
lib: ["dom", "dom.asynciterable", "deno.ns"],
lib: ["dom", "dom.asynciterable", "dom.iterable", "deno.ns"],
jsx: "precompile",
jsxImportSource: "preact",
jsxPrecompileSkipElements: [
Expand Down

0 comments on commit 182bda5

Please sign in to comment.