import type { JestConfigWithTsJest } from 'ts-jest' const jestConfig: JestConfigWithTsJest = { testMatch: ['**/test/**/*.test.ts'], testEnvironment: 'jsdom', moduleFileExtensions: ['js', 'jsx', 'json', 'ts'], transform: { '^.+\\.m?[tj]sx?$': [ 'ts-jest', { tsconfig: './tsconfig.json', } ] }, clearMocks: true, resetModules: true, testTimeout: 10000, moduleNameMapper: { '^@/(.*)$': '/src/$1', }, } export default jestConfig