From 190df391c369375d8c7a0ab83b1e27fcef2660f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 2 Apr 2026 19:43:46 +0800 Subject: [PATCH] =?UTF-8?q?build(config):=20=E6=9B=B4=E6=96=B0=20TypeScrip?= =?UTF-8?q?t=20=E9=85=8D=E7=BD=AE=E4=BB=A5=E5=8C=85=E5=90=AB=20config=20?= =?UTF-8?q?=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 include 数组中添加 ./config 路径 - 确保 TypeScript 编译器能够识别 config 目录下的文件 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index dd4c2af..ea5fb7b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -37,6 +37,6 @@ }, "skipLibCheck": true }, - "include": ["./src", "./types"], + "include": ["./src", "./types", "./config"], "compileOnSave": false }