We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3fb358 commit d9cb739Copy full SHA for d9cb739
3 files changed
jest.config.mjs
@@ -3,7 +3,10 @@ const config = {
3
testEnvironment: 'node',
4
testRegex: 'src/test/.*.test.ts',
5
transform: {
6
- '^.+\\.ts?$': ['ts-jest'],
+ // 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 }],
10
},
11
coveragePathIgnorePatterns: [
12
'src/Logger.ts',
0 commit comments