import type { Config } from '@jest/types' const config: Config.InitialOptions = { testEnvironment: 'jsdom', 'transform': { '^.+\\.tsx?$': [ 'esbuild-jest', { sourcemap: true, loaders: { '.spec.ts': 'tsx' } } ] } } export default config