Initialize app with Hono server and template index generation

This commit is contained in:
Mauricio Siu
2025-03-01 02:27:49 -06:00
parent b5eef03a1a
commit 332f89ed6f
7 changed files with 737 additions and 0 deletions

15
app/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"strict": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"types": [
"node"
],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"outDir": "./dist"
}
}