if i am the one calling the worker, would i pay for the time that it takes to download the zip?
if i am the one calling the worker, would i pay for the time that it takes to download the zip?


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.wrangler types (as described in https://developers.cloudflare.com/workers/languages/typescript/){
"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/*"
]
}
}
}wrangler types