translation-terrace/jest.config.ts
2025-02-01 08:58:03 -08:00

15 lines
253 B
TypeScript

// jest.config.ts
import { resolve } from "path"
const jestConfig = {
// preset: 'jest-expo',
preset: 'ts-jest',
transform: {
'^.+\\.(ts|tsx)$': 'babel-jest',
},
moduleNameMapper: {
'@': "<rootDir>"
},
}
export default jestConfig