hellenic-holidays
Version:
A modern TypeScript package for Greek holidays and Orthodox celebrations
20 lines (19 loc) • 648 B
JavaScript
;
/**
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
Object.defineProperty(exports, "__esModule", { value: true });
const config = {
preset: "ts-jest",
testEnvironment: "node",
transform: {
"^.+\\.tsx?$": "ts-jest",
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
roots: ["<rootDir>/src", "<rootDir>/tests"],
testMatch: ["**/__tests__/**/*.ts?(x)", "**/?(*.)+(spec|test).ts?(x)"],
coverageProvider: "v8",
testPathIgnorePatterns: ["/node_modules/", "/dist/", "\\.js$"],
};
exports.default = config;