From 9f5a87351308cd60f5c6d1ddc62df99480757081 Mon Sep 17 00:00:00 2001 From: coolxitech Date: Sun, 14 Dec 2025 12:06:32 +0800 Subject: [PATCH] =?UTF-8?q?chore(tsconfig):=20=E8=B0=83=E6=95=B4TypeScript?= =?UTF-8?q?=E7=BC=96=E8=AF=91=E7=9B=AE=E6=A0=87=E5=92=8C=E5=BA=93=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将编译目标从ES2023降级到ES2022 - 更新库定义版本从ES2023升级到ES2024 --- tsconfig.node.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.node.json b/tsconfig.node.json index 8a67f62..38c425a 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -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,