tsconfig.json 554 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "strict": true,
  7. "skipLibCheck": true,
  8. "lib": ["ESNext"],
  9. "types": ["@cloudflare/workers-types"],
  10. "jsx": "react-jsx",
  11. "jsxImportSource": "hono/jsx",
  12. "rootDir": "./src",
  13. "outDir": "./dist",
  14. "esModuleInterop": true,
  15. "forceConsistentCasingInFileNames": true,
  16. "resolveJsonModule": true,
  17. "isolatedModules": true,
  18. "noEmit": true
  19. },
  20. "include": ["src/**/*"],
  21. "exclude": ["node_modules", "dist"]
  22. }