8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} **/
|
|
module.exports = {
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+.tsx?$': ['ts-jest', {}],
|
|
},
|
|
}
|