19 lines
585 B
JavaScript
19 lines
585 B
JavaScript
module.exports = {
|
|
globals: {
|
|
"ts-jest": {
|
|
diagnostics: false,
|
|
isolatedModules: true,
|
|
},
|
|
},
|
|
transform: {
|
|
".(ts|tsx)$": require.resolve("ts-jest/dist/"),
|
|
},
|
|
setupFilesAfterEnv: ["./jest.setup.js"],
|
|
testEnvironment: "jsdom",
|
|
moduleNameMapper: {
|
|
// Force module uuid to resolve with the CJS entry point, because Jest does not support package.json.exports. See https://github.com/uuidjs/uuid/issues/451
|
|
// Issue is fixed in newer versions of UUID, but since it's a transitive dependency, we need to force it here.
|
|
"^uuid$": "uuid",
|
|
},
|
|
}
|