Initial commit: restore project after Git corruption

This commit is contained in:
2025-10-21 18:29:15 +08:00
commit 0bb423fcca
112 changed files with 19665 additions and 0 deletions

19
server/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"extends": "@kevisual/types/json/backend.json",
"compilerOptions": {
"baseUrl": ".",
"module": "NodeNext",
"target": "esnext",
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"@/*": [
"src/*"
]
},
},
"include": [
"src/**/*", "code/**/*",
],
}