jest
jest copied to clipboard
Using ttypescript and ts-auto-mock
I'm looking to switch a project from ts-jest to @swc/jest. This project uses ttypescript and ts-auto-mock, and requires ts-jest to be configured to use them:
module.exports = {
// [...]
globals: {
'ts-jest': {
compiler: 'ttypescript'
}
}
};
Is it possible to achieve the same or similar in @swc/jest?