module.exports = { preset: 'ts-jest', rootDir: 'src', testMatch: ['/tests-rosetta-cli-data/**/*.ts'], testPathIgnorePatterns: ['/tests-rosetta-cli-data/setup.ts', '/tests-rosetta-cli-data/teardown.ts'], collectCoverageFrom: ['/**/*.ts'], coveragePathIgnorePatterns: ['/tests*'], coverageDirectory: '../coverage', globalSetup: '/tests-rosetta-cli-data/setup.ts', globalTeardown: '/tests-rosetta-cli-data/teardown.ts', testTimeout: 240000, transformIgnorePatterns: [ "node_modules/(?!(@stacks/stacks-transactions)/)" ] };