From 134341d2b48168cbb86f74879bf6c1c8e24b799c Mon Sep 17 00:00:00 2001 From: Alin Ali Hassan Date: Thu, 16 Oct 2025 18:25:39 +0200 Subject: [PATCH] Remove duplicate 'linked' option from sourcemap (#23737) Bun bundler documentation duplicated the "linked" type for sourcemap. ### What does this PR do? Fix documentation mistake. ### How did you verify your code works? No code changes have been made. --- docs/bundler/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bundler/index.md b/docs/bundler/index.md index 53a5eaab2e..9b581ccfe0 100644 --- a/docs/bundler/index.md +++ b/docs/bundler/index.md @@ -1600,7 +1600,7 @@ interface BuildConfig { publicPath?: string; define?: Record; loader?: { [k in string]: Loader }; - sourcemap?: "none" | "linked" | "inline" | "external" | "linked" | boolean; // default: "none", true -> "inline" + sourcemap?: "none" | "linked" | "inline" | "external" | boolean; // default: "none", true -> "inline" /** * package.json `exports` conditions used when resolving imports *