Files
Reflecto/apps/server/tsconfig.json
2025-09-03 12:19:38 -03:00

20 lines
356 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"
}
}