Use source loader for email sprite icons
[ProtonMail-WebClient.git] / packages / redux-utilities / jest.config.ts
blob0576a276e98a853748e3864a5abe154cabd8b8b5
1 import type { JestConfigWithTsJest } from 'ts-jest';
3 const jestConfig: JestConfigWithTsJest = {
4     preset: 'ts-jest',
5     transform: {
6         '^.+\\.tsx?$': [
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;