summaryrefslogtreecommitdiff
path: root/jest.config.js
blob: 46ce77e1c8f7900df1b1d7dd69aa18ddb4b0aad6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'jsdom',
  transform: {
    "^.+\\.spec.ts?$": [
      "ts-jest",
      {
        diagnostics: {
          exclude: ['**'],
        },
      },
    ],
  },
  transformIgnorePatterns: ["<rootDir>/node_modules/"],
};