{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    },
    "target": "ESNext",
    "lib": ["ESNext", "DOM"],
    "jsx": "react-jsx",

    "jsxImportSource": "hono/jsx",
    "module": "ESNext",
    "rootDir": "./src",
    "moduleResolution": "Bundler",
    "types": ["vite/client", "@cloudflare/workers-types"],
    "declaration": true,
    "noEmit": false,
    "outDir": "./dist",
    "isolatedModules": true,
    "verbatimModuleSyntax": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true    
  },
  "include": ["src"],
  "exclude": ["tests"]
}
