@highflying/jest-module-name-mapper
Version:
Synchronization tsconfig paths with Jest (module name mapper)
16 lines (11 loc) • 329 B
text/typescript
export type TSConfigPaths = Record<string, string[]>;
export interface TSConfigCompilerOptions {
baseUrl: string;
outDir: string;
paths: TSConfigPaths;
}
export interface TSConfig {
compilerOptions: TSConfigCompilerOptions;
}
export type FreshPath = [string, string[]];
export type JestPath = Record<string, string>;