what does it mean for a worker to return a zip as response?
what does it mean for a worker to return a zip as response?


nodejs_compat flag:path, buffer, crypto, and others



pnpm wrangler types be available as ambient types without needing to reference the types in each file? I am finding that they are not, and I have to use /// <reference path="../worker-configuration.d.ts" /> at the top of the file for them to work. My tsconfig, in case I'm misconfiguring:compilerOptions.types and not in include.buffercryptocache-control: public, max-age=1, stale-while-revalidate=604800
cf-cache-status: UPDATINGpnpm wrangler types/// <reference path="../worker-configuration.d.ts" />compilerOptions.types{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.cloudflare.json"
}
],
"include": [
"worker-configuration.d.ts"
],
"compilerOptions": {
"checkJs": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./app/*"
]
}
}
}