Skip to content

Commit d9cb739

Browse files
committed
update deps
1 parent c3fb358 commit d9cb739

File tree

3 files changed

+209
-206
lines changed

3 files changed

+209
-206
lines changed

jest.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ const config = {
33
testEnvironment: 'node',
44
testRegex: 'src/test/.*.test.ts',
55
transform: {
6-
'^.+\\.ts?$': ['ts-jest'],
6+
// transpilation: true is needed to avoid warnigns. However we lose TS
7+
// checks. We don't care since we have TS tasks for that.
8+
// See https://kulshekhar.github.io/ts-jest/docs/getting-started/options/transpilation
9+
'^.+\\.ts?$': ['ts-jest', { transpilation: true }],
710
},
811
coveragePathIgnorePatterns: [
912
'src/Logger.ts',

0 commit comments

Comments
 (0)