Files
mlb-overlay-server/apps/server/tsconfig.json
2025-07-28 11:36:22 +02:00

22 lines
407 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
},
"outDir": "./dist",
"types": [
"bun"
],
"composite": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}