feat: 后端实现items增删改查

This commit is contained in:
2025-12-10 17:08:35 +08:00
parent bc2d1bd4f2
commit 3ca6528567
8 changed files with 363 additions and 73 deletions

View File

@@ -1,29 +1,35 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"lib": [
"ESNext"
],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}
},
"include": [
"./**/*.ts",
"./generated/client/index.d.ts"
],
"exclude": [
"node_modules"
]
}