Skip to content

Commit 55573cf

Browse files
authored
Change limit of source map 3MB (#14641)
1 parent f23d184 commit 55573cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/babel-core/src/transformation/normalize-file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import parser from "../parser";
1212
import cloneDeep from "./util/clone-deep";
1313

1414
const debug = buildDebug("babel:transform:file");
15-
const LARGE_INPUT_SOURCEMAP_THRESHOLD = 1_000_000;
15+
const LARGE_INPUT_SOURCEMAP_THRESHOLD = 3_000_000;
1616

1717
export type NormalizedFile = {
1818
code: string;

0 commit comments

Comments
 (0)