build(config): 更新 TypeScript 配置以包含 config 目录

- 在 include 数组中添加 ./config 路径
- 确保 TypeScript 编译器能够识别 config 目录下的文件
This commit is contained in:
2026-04-02 19:43:46 +08:00
parent 5fe881b927
commit 190df391c3

View File

@@ -37,6 +37,6 @@
},
"skipLibCheck": true
},
"include": ["./src", "./types"],
"include": ["./src", "./types", "./config"],
"compileOnSave": false
}