diff --git a/examples/template-default/sde.config.js b/examples/template-default/sde.config.js index 41451137..224f08d8 100644 --- a/examples/template-default/sde.config.js +++ b/examples/template-default/sde.config.js @@ -27,10 +27,7 @@ const corePath = (...parts) => packagePath('core', ...parts) // If `genFormat` is 'js', the sde compiler will generate JavaScript code that runs // in the browser or in Node.js without the additional Emscripten build step. // -// TODO: Until new `@sdeverywhere` packages that support JS code generation are -// published on the npm registry, the only working option here is 'c'. The default -// value will be set to 'js' once those new packages are published. -const genFormat = 'c' +const genFormat = 'js' export async function config() { return { diff --git a/examples/template-minimal/sde.config.js b/examples/template-minimal/sde.config.js index 505f59c1..2e2b7247 100644 --- a/examples/template-minimal/sde.config.js +++ b/examples/template-minimal/sde.config.js @@ -16,10 +16,7 @@ import { workerPlugin } from '@sdeverywhere/plugin-worker' // If `genFormat` is 'js', the sde compiler will generate JavaScript code that runs // in the browser or in Node.js without the additional Emscripten build step. // -// TODO: Until new `@sdeverywhere` packages that support JS code generation are -// published on the npm registry, the only working option here is 'c'. The default -// value will be set to 'js' once those new packages are published. -const genFormat = 'c' +const genFormat = 'js' export async function config() { return {