浏览代码

🔧 chore(tsconfig): update include/exclude configuration

- add "tests/**/*" to include array to include test files in TypeScript compilation
- remove "tests" from exclude array to ensure test files are processed by TypeScript
yourname 2 月之前
父节点
当前提交
ef9f63e120
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/stt-sdk-core/tsconfig.json

+ 2 - 2
packages/stt-sdk-core/tsconfig.json

@@ -23,6 +23,6 @@
       "@/*": ["src/*"]
     }
   },
-  "include": ["src/**/*"],
-  "exclude": ["node_modules", "dist", "tests"]
+  "include": ["src/**/*", "tests/**/*"],
+  "exclude": ["node_modules", "dist"]
 }