Files

12 lines
301 B
JavaScript
Raw Permalink Normal View History

2019-04-19 15:15:34 -04:00
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
roots: ['<rootDir>/packages'],
testEnvironment: 'node',
testMatch: ['**/__tests__/*.test.ts'],
transform: {
2025-11-18 14:21:47 +00:00
'^.+\\.ts$': ['ts-jest', {isolatedModules: true, diagnostics: {warnOnly: true}}]
2019-04-19 15:15:34 -04:00
},
2024-01-09 19:05:11 +00:00
verbose: true
2024-01-09 19:47:02 +00:00
}