import { pathsToModuleNameMapper } from 'ts-jest' import { compilerOptions } from './tsconfig.json' import type { JestConfigWithTsJest } from 'ts-jest' const jestConfig: JestConfigWithTsJest = { preset: 'ts-jest', testEnvironment: 'node', setupFilesAfterEnv: ['/setupTest.ts'], transform: { '^.+\\.(t|j)sx?$': '@swc/jest' }, roots: [''], modulePaths: [compilerOptions.baseUrl], moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths) } export default jestConfig