Presupuestador_web/server/jest.config.js

12 lines
269 B
JavaScript
Raw Normal View History

2024-07-16 17:17:52 +00:00
// jest.config.js
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2024-04-24 10:48:49 +00:00
module.exports = {
2024-07-16 17:17:52 +00:00
preset: "ts-jest",
2024-04-24 10:48:49 +00:00
testEnvironment: "node",
2024-07-16 17:17:52 +00:00
moduleNameMapper: {
"^@shared/(.*)$": "<rootDir>/../shared/lib/$1",
"^@/(.*)$": "<rootDir>/src/$1",
},
2024-04-24 10:48:49 +00:00
};