From f574d0fb4189336fd8ede283eeabaff88ef89e5f Mon Sep 17 00:00:00 2001 From: yansongda Date: Sun, 10 Mar 2024 15:09:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20=E4=BF=AE=E5=A4=8D=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E6=8A=A5=20warning=20=E7=9A=84=E9=97=AE=E9=A2=98=20(#?= =?UTF-8?q?55)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + tsconfig.json | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bedbbf..370f5dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### fixed - fix(backend): 中文长度计算错误的问题(#54) +- fix(frontend): 修复构建报 warning 的问题(#55) ### chore diff --git a/tsconfig.json b/tsconfig.json index 390e75c..9ebaffe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,7 @@ "miniprogram-api-typings", ], "baseUrl": ".", + "outDir": "build", "paths": { "tdesign-miniprogram/*":["miniprogram/miniprogram_npm/tdesign-miniprogram/*"], "@api/*": ["miniprogram/api/*"], @@ -30,6 +31,7 @@ } }, "exclude": [ - "node_modules" + "node_modules", + "build/**/*" ] }