Skip to content

Commit

Permalink
fix(config): Remove multiple jest config
Browse files Browse the repository at this point in the history
Deleted jest.config.js file as it's no longer needed. Updated tsconfig.json by adding 'jest.config.ts' to exclusion list for better TypeScript compilation.
  • Loading branch information
Theshedman committed Dec 2, 2023
1 parent 1e3a6bb commit 014ecb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 35 deletions.
34 changes: 0 additions & 34 deletions jest.config.js

This file was deleted.

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
],
"exclude": [
"src/test/*",
"node_modules"
"node_modules",
"jest.config.ts"
]
}

0 comments on commit 014ecb8

Please sign in to comment.