// jest.config.ts import { resolve } from "path" import { createJsWithBabelPreset, JestConfigWithTsJest } from 'ts-jest' const jsWithBabelPreset = createJsWithBabelPreset({ tsconfig: 'tsconfig.spec.json', babelConfig: true, }) const jestConfig: JestConfigWithTsJest = { preset: 'react-native', transform: jsWithBabelPreset.transform, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], // moduleNameMapper: { // '^@/(.*)$': resolve("", "$1") // }, transformIgnorePatterns: [ '/node_modules/(react-clone-referenced-element|@react-native-community|react-navigation|@react-navigation/.*|@unimodules/.*|native-base|react-native-code-push)', ], } export default jestConfig