import type { Config } from 'jest'; const config: Config = { preset: 'ts-jest', testEnvironment: 'node', rootDir: '.', testMatch: ['/tests/unit/**/*.test.ts', '/tests/integration/**/*.test.ts'], testTimeout: 15000, transform: { '^.+\\.ts$': ['ts-jest', { tsconfig: 'tsconfig.jest.json' }], }, }; export default config;