Presupuestador_web/shared/jest.config.js

15 lines
259 B
JavaScript
Raw Normal View History

2024-06-19 16:54:25 +00:00
module.exports = {
globals: {},
moduleFileExtensions: ["ts", "js"],
transform: {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
tsconfig: "tsconfig.json",
},
],
},
testMatch: ["**/*.test.(ts|js)"],
testEnvironment: "node",
};