mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
14 lines
251 B
JavaScript
14 lines
251 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "jsdom",
|
|
moduleNameMapper: {
|
|
"^@/(.*)$": "<rootDir>/src/$1",
|
|
},
|
|
setupFilesAfterEnv: ["<rootDir>/setupTests.ts"],
|
|
globals: {
|
|
"ts-jest": {
|
|
babelConfig: true,
|
|
},
|
|
},
|
|
}
|