tsconfig.json 250 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "strict": true,
  7. "lib": ["ESNext"],
  8. "noEmit": true,
  9. "types": ["@cloudflare/workers-types"]
  10. },
  11. "include": ["src/**/*.ts"]
  12. }