A minimal example: ```typescript console.log(someMadeUpGlobal) export default { fetch: async (re

A minimal example:

console.log(someMadeUpGlobal)

export default {
  fetch: async (request) => new Response("Hello")
}


gives "ReferenceError: default is not defined" rather than "ReferenceError: someMadeUpGlobal" is not defined.
Was this page helpful?