瀏覽代碼

fix: 配置 TypeScript 构建根目录

- 添加 rootDir 编译选项指向 ./src 目录
- 保持现有编译配置不变
- 排除测试文件和 node_modules 目录
Jin Mao 2 月之前
父節點
當前提交
7e8b9c2368
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      internal/node-utils/tsconfig.build.json

+ 1 - 0
internal/node-utils/tsconfig.build.json

@@ -2,6 +2,7 @@
   "$schema": "https://json.schemastore.org/tsconfig",
   "extends": "./tsconfig.json",
   "compilerOptions": {
+    "rootDir": "./src",
     "noEmit": false
   },
   "exclude": ["node_modules", "src/__tests__"]