forked from mirrored/github-readme-stats
This commit performs the base changes that are needed to migrate the codebase to typescript.
13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
clearMocks: true,
|
|
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
modulePathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
coveragePathIgnorePatterns: [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/tests/E2E/",
|
|
],
|
|
};
|