DRVDOC-1129: Clicking on editor margins should focus editor
[ProtonMail-WebClient.git] / packages / account / jest.config.ts
blobee90e52eff8e85a9e0df50db64b3206056caf869
1 import type { JestConfigWithTsJest } from 'ts-jest';
3 const jestConfig: JestConfigWithTsJest = {
4     preset: 'ts-jest',
5     transform: {
6         '^.+\\.(ts|js)x?$': [
7             'ts-jest',
8             {
9                 babelConfig: true,
10             },
11         ],
12     },
13     setupFilesAfterEnv: ['./jest.setup.ts'],
14     testEnvironment: 'jsdom',
15     moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
18 export default jestConfig;