@swc-node/jest
v1.8.12
Published
swc preprocessor for jest with source map support
Downloads
132,046
Maintainers
Readme
@swc-node/jest
🚀 Help me to become a full-time open-source developer by sponsoring me on Github
Usage
// jest.config.js
module.exports = {
transform: {
'^.+\\.(t|j)sx?$': ['@swc-node/jest'],
},
}
Configuration
Configuration can be passed as a second argument to transform
:
// jest.config.js
module.exports = {
transform: {
'^.+\\.(t|j)sx?$': [
'@swc-node/jest',
// configuration
{
dynamicImport: true,
react: {
pragma: 'h',
},
},
],
},
}