Files
create-better-t-stack/apps/cli/templates/backend/server-base/tsconfig.json
Aman Varshney 7f441ef670 add orpc
2025-04-17 16:45:33 +05:30

19 lines
350 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./",
"outDir": "./dist",
"types": ["node", "bun"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
},
"tsc-alias": {
"resolveFullPaths": true
}
}