Skip to content

Commit 01f562a

Browse files
committed
fix: exclude Cypress files from TypeScript compilation
- Add cypress.config.ts and cypress/**/* to tsconfig exclude - Prevents TypeScript errors during build on Vercel - Ensures successful deployment without Cypress dependencies
1 parent bdec5d9 commit 01f562a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"**/*.test.ts",
3030
"**/*.test.tsx",
3131
"**/*.spec.ts",
32-
"**/*.spec.tsx"
32+
"**/*.spec.tsx",
33+
"cypress.config.ts",
34+
"cypress/**/*"
3335
]
3436
}

0 commit comments

Comments
 (0)