Update hono, elysia, express, fastify template to use tsdown (#399)

This commit is contained in:
Aman Varshney
2025-07-14 11:20:31 +05:30
committed by GitHub
parent 7143c2a2f1
commit 5080b6b75f
4 changed files with 25 additions and 7 deletions

View File

@@ -23,11 +23,23 @@
"@/*": ["./src/*"]
}
},
"include": ["./next-env.d.ts", "./**/*.ts", "./**/*.tsx", "./.next/types/**/*.ts"],
"exclude": ["./node_modules"],
"include": [
"./next-env.d.ts",
"./**/*.ts",
"./**/*.tsx",
"./.next/types/**/*.ts",
{{#if (eq runtime "workers")}}
"../server/worker-configuration.d.ts"
{{/if}}
],
"exclude": [
"./node_modules"
],
{{#unless (or (eq backend "convex") (eq backend "none"))}}
"references": [{
"path": "../server"
}]
"references": [
{
"path": "../server"
}
]
{{/unless}}
}