Skip to content
/ jest Public
forked from jestjs/jest

Commit

Permalink
intentionally break one
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Mar 26, 2020
1 parent 512c27a commit 16549b3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/jest-transform/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,8 @@ export type Options = ShouldInstrumentOptions &
isInternalModule: boolean;
}>;

// extends directly after https://github.com/sandersn/downlevel-dts/issues/33 is fixed
type SourceMapWithVersion = Omit<RawSourceMap, 'version'>;

// This is fixed in source-map@0.7.x, but we can't upgrade yet since it's async
interface FixedRawSourceMap extends SourceMapWithVersion {
interface FixedRawSourceMap extends Omit<RawSourceMap, 'version'> {
version: number;
}

Expand Down

0 comments on commit 16549b3

Please sign in to comment.