This commit is contained in:
2025-10-15 14:47:53 +08:00
commit 943d664c36
10 changed files with 637 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": {
"@/*": [
"server/src/*"
]
},
},
"include": [
"server/src/**/*",
],
}