Jelajahi Sumber

🔧 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 4 bulan lalu
induk
melakukan
ef9f63e120
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  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"]
 }