chore: 更新依赖, 支持日程表单日多日程

This commit is contained in:
Megghy
2025-09-30 09:48:57 +08:00
parent 7c516559f1
commit 6fd046adcd
15 changed files with 1307 additions and 482 deletions

View File

@@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"target": "ESNext",
"module": "ESNext",
"strict": true,
"moduleResolution": "bundler",
"moduleResolution": "Bundler",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
@@ -16,7 +16,9 @@
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"],
"resolveJsonModule": true,
"isolatedModules": true
},
"include": [
"src/**/*.ts",
@@ -27,7 +29,9 @@
"env.d.ts",
"default.d.ts",
"src/data/chat/ChatClientDirectOpenLive.js",
"src/data/chat/models.js", "src/store/useDanmakuClient.ts",
"src/data/chat/models.js",
"src/store/useDanmakuClient.ts"
],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}