15 lines
253 B
TypeScript
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 |