chore(tsconfig): 调整TypeScript编译目标和库版本

- 将编译目标从ES2023降级到ES2022
- 更新库定义版本从ES2023升级到ES2024
This commit is contained in:
coolxitech
2025-12-14 12:06:32 +08:00
parent 95b4f23268
commit 9f5a873513

View File

@@ -1,8 +1,8 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"target": "ES2022",
"lib": ["ES2024"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,