diff --git a/jest.config.mjs b/jest.config.mjs
index cd633c9ad7bf6fb7f1cb94145838a6ef058a73b3..7079cf9e9cbc60a00b78c174d0027a0baabf3246 100644
--- a/jest.config.mjs
+++ b/jest.config.mjs
@@ -23,6 +23,11 @@ const serverTestConfig = {
 const config = {
     // Add more setup options before each test is run
     projects: [await createJestConfig(clientTestConfig)(), await createJestConfig(serverTestConfig)()],
+    collectCoverageFrom: [
+        '**/app/api/**',
+        '!**/node_modules/**',
+        '!**/vendor/**',
+      ]
 };
 
 export default config;
\ No newline at end of file