We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 512c27a commit 16549b3Copy full SHA for 16549b3
packages/jest-transform/src/types.ts
@@ -24,11 +24,8 @@ export type Options = ShouldInstrumentOptions &
24
isInternalModule: boolean;
25
}>;
26
27
-// extends directly after https://github.com/sandersn/downlevel-dts/issues/33 is fixed
28
-type SourceMapWithVersion = Omit<RawSourceMap, 'version'>;
29
-
30
// This is fixed in [email protected], but we can't upgrade yet since it's async
31
-interface FixedRawSourceMap extends SourceMapWithVersion {
+interface FixedRawSourceMap extends Omit<RawSourceMap, 'version'> {
32
version: number;
33
}
34
0 commit comments