Skip to content

Commit

Permalink
Fix root jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Jun 24, 2023
1 parent 9eb2508 commit cfbc7b3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions jest.config.json
@@ -0,0 +1,10 @@
{
"rootDir": ".",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.*\\.test\\.ts$",
"modulePathIgnorePatterns": ["language-server", "__vitest__"],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"coverageReporters": ["json-summary", "text", "lcov"]
}

0 comments on commit cfbc7b3

Please sign in to comment.