blob: b738f4b2bd92b00e3482553b021a5a8ae922a720 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: "ts-jest/presets/js-with-ts",
testEnvironment: "node",
testPathIgnorePatterns: ["/__fixtures__/", "/__tests__/test-utils.ts"],
coveragePathIgnorePatterns: ["/__fixtures__/", "/__tests__/test-utils.ts"],
transformIgnorePatterns: ["/node_modules/(?!(ansi-regex)/)"],
modulePathIgnorePatterns: ["<rootDir>/node_modules", "<rootDir>/dist"],
collectCoverage: true,
verbose: true,
};
|