From a328c298703c65c258aab332d26076c4011034de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Tue, 16 Dec 2025 03:49:14 +0800 Subject: [PATCH] fix: build --- web/tsconfig.node.json | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/web/tsconfig.node.json b/web/tsconfig.node.json index ab578bcd..b1b23caa 100644 --- a/web/tsconfig.node.json +++ b/web/tsconfig.node.json @@ -1,7 +1,5 @@ { - "extends": [ - "@tsconfig/node22/tsconfig.json" - ], + "extends": ["@tsconfig/node24/tsconfig.json"], "compilerOptions": { "composite": true, "noEmit": true, @@ -9,15 +7,9 @@ "module": "ESNext", "moduleResolution": "Bundler", "paths": { - "~/*": [ - "./*" - ], - "@/*": [ - "./src/*" - ] + "~/*": ["./*"], + "@/*": ["./src/*"] }, - "types": [ - "node" - ] + "types": ["node"] } }