From f79fd3ab221010c18538337a04320ab8ed5a804d Mon Sep 17 00:00:00 2001 From: cnbugs <717192502@qq.com> Date: Wed, 13 May 2026 12:02:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=BB=E5=BA=95=E8=A7=A3=E5=86=B3tsconfig?= =?UTF-8?q?=E6=89=BE=E4=B8=8D=E5=88=B0=E9=97=AE=E9=A2=98=EF=BC=9A=E7=A7=BB?= =?UTF-8?q?=E9=99=A4@vue/tsconfig=E4=BE=9D=E8=B5=96=EF=BC=8C=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E7=9B=B4=E6=8E=A5=E5=86=85=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/package.json | 1 - frontend/tsconfig.app.json | 1 - frontend/tsconfig.node.json | 5 +++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 959a539..1659e62 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -16,7 +16,6 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^4.5.0", - "@vue/tsconfig": "^0.5.0", "typescript": "^5.2.2", "vite": "^5.0.0", "vue-tsc": "^1.8.22" diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index 66c78f8..72a3c41 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -1,5 +1,4 @@ { - "extends": "@vue/tsconfig/tsconfig.web.json", "compilerOptions": { "composite": true, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json index d88e351..3afdd6e 100644 --- a/frontend/tsconfig.node.json +++ b/frontend/tsconfig.node.json @@ -1,12 +1,13 @@ { - "extends": "@vue/tsconfig/tsconfig.node.json", "compilerOptions": { "composite": true, "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", "skipLibCheck": true, "module": "ESNext", "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true + "allowSyntheticDefaultImports": true, + "strict": true, + "noEmit": true }, "include": ["vite.config.ts"] }