@swc-node/jest

swc preprocessor for jest with source map support

Usage no npm install needed!

<script type="module">
  import swcNodeJest from 'https://cdn.skypack.dev/@swc-node/jest';
</script>

README

@swc-node/jest

Downloads

🚀 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',
        },
      },
    ],
  },
}

List of all of the available configuration options.