esbuild-typescript-modules-workers-template
Template for deploying projects with Cloudflare Workers + Wrangler, using custom build support with ESBuild.
This template uses TypeScript, though you can customize the build settings in build.js
.
Setup
- Create a new repo based on this repo using the template page
- Provide your
account_id
inwrangler.toml
(or viaCF_ACCOUNT_ID
environment variable)
Build/TypeScript validations
If you choose to use TypeScript with this template, note that via tsconfig.json
, this project configures tsc
via the noEmit
configuration option to validate TypeScript code, but not emit it. This means that you can run npx tsc build
to check for TypeScript issues in your project (or see them in your editor, e.g. VSCode), but you should use npm run build
(which shells out to build.js
) to actually build your project for publication on Workers.
Publish
You can publish your project using the traditional wrangler publish
command.