aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
blob: 1924169f025e4fc5c94a7d52a1c3878f0f690f56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// @ts-check

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
  preset: 'ts-jest',
  resetMocks: true,
  restoreMocks: true,
  testEnvironment: 'node',
  testPathIgnorePatterns: [
    '/dist/',
    '/dist-types',
    '/node_modules/',
  ],
};