MCP Ethers Wallet

/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: 'ts-jest/presets/default-esm', testEnvironment: 'node', testMatch: ['**/*.test.ts'], transform: { '^.+\\.tsx?$': ['ts-jest', { useESM: true, }] }, moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1' }, setupFilesAfterEnv: ['./jest.setup.ts'] };