Files
reacord/jest.config.js
2021-12-21 13:35:30 -06:00

20 lines
362 B
JavaScript

/** @type {import('@jest/types').Config.InitialOptions} */
const config = {
transform: {
"^.+\\.tsx?$": [
"esbuild-jest",
{
format: "esm",
sourcemap: true,
},
],
},
moduleNameMapper: {
"(^(\\./|\\.\\./).+)\\.js$": "$1",
},
extensionsToTreatAsEsm: [".ts", ".tsx"],
verbose: true,
}
export default config