rename directories

This commit is contained in:
2025-07-14 17:02:31 +08:00
parent 742c8f5931
commit 0c8d6cbd06
21 changed files with 523 additions and 0 deletions

16
js-hono/tsconfig.json Normal file
View File

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