Files
droidclaw/server/tsconfig.json
Sanju Sivalingam bc014fd587 feat: scaffold Hono server with auth and health check
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 14:07:19 +05:30

18 lines
360 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src",
"types": ["bun"],
"paths": {
"@droidclaw/shared": ["../packages/shared/src"]
}
},
"include": ["src/**/*.ts"]
}