import type { Config } from "jest"; // Add any custom config to be passed to Jest const config: Config = { preset: "ts-jest", moduleNameMapper: { "^@/(.*)$": "/src/$1", }, }; export default config;