fix(web): downgrade deps for TS 5.3 compatibility

vue-tsc 1.8.27 -> 2.0.24 (monkey-patching broke with TS 5.3).
Remove erasableSyntaxOnly, ignoreDeprecations (TS 6.0 only).
Remove verbatimModuleSyntax, target es2023 -> es2022.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
dailz
2026-04-20 13:41:46 +08:00
parent 22963d0e6f
commit 0a0e5fd7d4
4 changed files with 1643 additions and 1108 deletions

2714
web/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,20 +9,21 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@element-plus/icons-vue": "^2.3.2", "@element-plus/icons-vue": "^2.3.1",
"axios": "^1.15.0", "axios": "^1.6.5",
"element-plus": "^2.13.7", "element-plus": "^2.5.2",
"vue": "^3.5.32", "vue": "^3.4.15",
"vue-router": "^5.0.4" "vue-router": "^4.2.5"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^24.12.2", "@playwright/test": "^1.59.1",
"@vitejs/plugin-vue": "^6.0.5", "@types/node": "^20.11.5",
"@vue/tsconfig": "^0.9.1", "@vitejs/plugin-vue": "^5.0.3",
"typescript": "~6.0.2", "@vue/tsconfig": "^0.5.1",
"unplugin-auto-import": "^21.0.0", "typescript": "~5.3.3",
"unplugin-vue-components": "^32.0.0", "unplugin-auto-import": "^0.17.3",
"vite": "^8.0.4", "unplugin-vue-components": "^0.26.0",
"vue-tsc": "^3.2.6" "vite": "^5.0.12",
"vue-tsc": "^2.0.24"
} }
} }

View File

@@ -1,18 +1,17 @@
{ {
"extends": "@vue/tsconfig/tsconfig.dom.json", "extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": { "compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"], "types": ["vite/client"],
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["src/*"] "@/*": ["src/*"]
}, },
"ignoreDeprecations": "6.0",
/* Linting */ /* Linting */
"noUnusedLocals": true, "noUnusedLocals": true,
"noUnusedParameters": true, "noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true
}, },
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"] "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]

View File

@@ -1,8 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2023", "target": "es2022",
"lib": ["ES2023"], "lib": ["ES2022"],
"module": "esnext", "module": "esnext",
"types": ["node"], "types": ["node"],
"skipLibCheck": true, "skipLibCheck": true,
@@ -10,14 +11,12 @@
/* Bundler mode */ /* Bundler mode */
"moduleResolution": "bundler", "moduleResolution": "bundler",
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force", "moduleDetection": "force",
"noEmit": true, "noEmit": true,
/* Linting */ /* Linting */
"noUnusedLocals": true, "noUnusedLocals": true,
"noUnusedParameters": true, "noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true
}, },
"include": ["vite.config.ts"] "include": ["vite.config.ts"]