| 1234567891011121314151617 |
- // TypeScript declarations for jest-preset.js
- declare const jestPreset: {
- preset: string;
- testEnvironment: string;
- setupFilesAfterEnv: string[];
- moduleNameMapper: Record<string, string>;
- testMatch: string[];
- collectCoverageFrom: string[];
- coverageDirectory: string;
- coverageReporters: string[];
- testPathIgnorePatterns: string[];
- transform: Record<string, any>;
- transformIgnorePatterns: string[];
- moduleFileExtensions: string[];
- };
- export default jestPreset;
|