import type { Config } from 'jest'; const config: Config = { testEnvironment: 'jsdom', transform: { '^.+\\.tsx?$': '@swc/jest', }, testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], }; export default config;