Skip to content

Commit

Permalink
Chore: Fix ts-jest config deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraM committed Jan 3, 2024
1 parent 8ab4715 commit 135288d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config/jest.config.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"rootDir": "../",
"transform": {
"\\.[j|t]s?$": "ts-jest"
"\\.[j|t]s?$": [
"ts-jest",
{
"isolatedModules": true
}
]
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"modulePathIgnorePatterns": ["<rootDir>/dist"],
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
"modulePathIgnorePatterns": ["<rootDir>/dist"]
}

0 comments on commit 135288d

Please sign in to comment.