refactor/api-prox: config.json -> config.ts

This commit is contained in:
Kentai Radiquum 2025-09-06 00:19:16 +05:00
parent 83fe8e80e3
commit 002b5a446c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 23 additions and 9 deletions

View file

@ -3,14 +3,18 @@
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"skipLibCheck": true,
"lib": [
"ESNext"
],
"lib": ["ESNext"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"outDir": "./dist"
},
"include": ["src/**/*.ts", "src/**/*.json"],
"exclude": ["node_modules"]
}
}