// 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