jest-preset.d.ts 482 B

1234567891011121314151617
  1. // TypeScript declarations for jest-preset.js
  2. declare const jestPreset: {
  3. preset: string;
  4. testEnvironment: string;
  5. setupFilesAfterEnv: string[];
  6. moduleNameMapper: Record<string, string>;
  7. testMatch: string[];
  8. collectCoverageFrom: string[];
  9. coverageDirectory: string;
  10. coverageReporters: string[];
  11. testPathIgnorePatterns: string[];
  12. transform: Record<string, any>;
  13. transformIgnorePatterns: string[];
  14. moduleFileExtensions: string[];
  15. };
  16. export default jestPreset;