https://docs.deno.com/runtime/reference/cli/serve/#example
For example, taking the example in the docs causes this:

It should probably be:
export default {
async fetch(req) {
return new Response("Hello world!");
},
} satisfies Deno.ServeDefaultExport;