/** @type {import('ts-jest').JestConfigWithTsJest} **/ module.exports = { testEnvironment: "node", verbose: true, preset: 'ts-jest', moduleFileExtensions: [ "js", "ts", "json", "node" ], transform: { "^.+\\.tsx?$": ["ts-jest",{ tsconfig: "/test/tsconfig.test.json", }], }, moduleNameMapper: { '^@/(.*)$': '/src/$1', }, testMatch: [ "/test/e2e/**/*.test.ts" ], setupFilesAfterEnv: [], testPathIgnorePatterns: [ "/node_modules/", "/dist/", ], rootDir: '../', testTimeout: 30000, };