/** @type {import('ts-jest').JestConfigWithTsJest} **/ module.exports = { testEnvironment: "node", transform: { "^.+.tsx?$": ["ts-jest",{}], }, moduleNameMapper: { '@services/(.*)': '/../shared/services/$1', '@data/(.*)': '/../shared/data/$1', '@functions/(.*)': '/../shared/functions/$1', '@schema/(.*)': '/../shared/schema/$1', } };