GildedRose-Refactoring-Kata/TypeScript/jest.config.js
2021-11-11 16:27:17 +01:00

8 lines
190 B
JavaScript

module.exports = {
roots: ["<rootDir>/src"],
testMatch: ["**/__tests__/**/*.+(ts|tsx|js)", "**/?(*.)+(spec|test).+(ts|tsx|js)"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
};