feat: migrate to vite and hono

This commit is contained in:
2025-06-04 11:46:50 +09:00
committed by Satsuki Akiba (aider)
parent 80d48a1f8c
commit ac8dd91b7f
8 changed files with 192 additions and 111 deletions

View File

@ -4,7 +4,7 @@
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "auto",
"moduleDetection": "force",
"jsx": "preserve",
"jsxImportSource": "react",
"allowJs": true,
@ -12,7 +12,6 @@
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
@ -28,19 +27,8 @@
"noPropertyAccessFromIndexSignature": true,
// Next.js specific settings
"types": ["next", "react", "node"]
"types": ["react", "bun"]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
],
"exclude": [
"node_modules",
".next",
"out",
"public",
"styles"
]
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"exclude": ["node_modules", ".next", "out", "public", "styles"]
}