config:添加TypeScript构建配置

- 添加tsconfig.build.json构建配置文件
This commit is contained in:
moyin
2026-01-08 23:06:56 +08:00
parent 72bd69655e
commit 931ccc4440

12
tsconfig.build.json Normal file
View File

@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.json",
"exclude": [
"node_modules",
"dist",
"client",
"**/*.spec.ts",
"**/*.test.ts",
"**/tests/**/*",
"test/**/*"
]
}