server/tsconfig.json 533 B raw
1
{
2
  "extends": "../tsconfig.json",
3
  "compilerOptions": {
4
    // Environment settings
5
    "lib": ["ESNext"],
6
    "target": "ESNext",
7
    "module": "ESNext",
8
    "jsx": "react-jsx",
9
    "jsxImportSource": "hono/jsx",
10
11
    // Types
12
    "types": ["bun-types"],
13
14
    // Output settings
15
    "outDir": "dist",
16
    "noEmit": false,
17
    "emitDecoratorMetadata": true,
18
19
    // Module resolution
20
    "moduleResolution": "bundler",
21
    "allowImportingTsExtensions": false
22
  },
23
  "include": ["src/**/*"],
24
  "exclude": ["node_modules", "dist"]
25
}