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.
This commit is contained in:
Alin Ali Hassan
2025-10-16 18:25:39 +02:00
committed by GitHub
parent 642d04b9f2
commit 134341d2b4

View File

@@ -1600,7 +1600,7 @@ interface BuildConfig {
publicPath?: string;
define?: Record<string, string>;
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
*