Files
reacord/jest.config.js
2021-12-21 10:10:53 -06:00

19 lines
335 B
JavaScript

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