Browse Source

🔧 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 months ago
parent
commit
ef9f63e120
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/stt-sdk-core/tsconfig.json

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

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