tsconfig.json 319 B

123456789101112
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@tsconfig/node22/tsconfig.json",
  4. "compilerOptions": {
  5. "lib": ["ES2023", "WebWorker"],
  6. "module": "ESNext",
  7. "moduleResolution": "bundler",
  8. "noEmit": true,
  9. "types": ["@cloudflare/workers-types", "bun"]
  10. },
  11. "include": ["src"]
  12. }