// jest.config.ts import type {Config} from '@jest/types'; // Sync object const config: Config.InitialOptions = { verbose: true, transformIgnorePatterns: [ "/node_modules/(?!antd|@ant-design|rc-.+?|@babel/runtime).+(js|jsx)$" ] }; export default config; // // Or async function // export default async (): Promise => { // return { // verbose: true, // }; // };