import type { Config } from 'jest' import nextJest from 'next/jest' const createJestConfig = nextJest({ dir: './', }) const config: Config = { coverageProvider: 'v8', testEnvironment: 'node', setupFilesAfterEnv: ['/__tests__/setup.ts'], moduleNameMapper: { '^@/(.*)$': '/src/$1', }, testMatch: ['**/__tests__/**/*.test.ts'], transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }], }, } export default createJestConfig(config)