From c2e07834bec6cbe69b53785d37750802702108c9 Mon Sep 17 00:00:00 2001 From: selfrelease Date: Thu, 30 Jul 2026 15:14:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=20tsconfig=20baseUrl?= =?UTF-8?q?=20+=20ignoreDeprecations=EF=BC=8Cpaths=20=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E9=9C=80=E8=A6=81=20baseUrl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/tsconfig.json | 4 +--- frontend/tsconfig.json | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index d75d7e6..e6043b8 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -11,11 +11,9 @@ "resolveJsonModule": true, "declaration": true, "sourceMap": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] - }, - "ignoreDeprecations": "5.0" + } }, "include": ["src/**/*", "prisma/**/*"], "exclude": ["node_modules", "dist"] diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 865694f..984cdb8 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -15,11 +15,9 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] - }, - "ignoreDeprecations": "5.0" + } }, "include": ["src"], "references": [{ "path": "./tsconfig.node.json" }]