This commit is contained in:
Akira Tempaku 2025-03-07 15:36:54 +09:00
commit 2a7d118145
Signed by: paku
GPG key ID: 5B4E8402BCC50607
7 changed files with 670 additions and 0 deletions

14
tsconfig.json Normal file
View file

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