diff --git a/src/cli/config-cli.ts b/src/cli/config-cli.ts index c35caf5f007..5d128b6a177 100644 --- a/src/cli/config-cli.ts +++ b/src/cli/config-cli.ts @@ -313,7 +313,7 @@ export function registerConfigCli(program: Command) { .description("Set a config value by dot path") .argument("", "Config path (dot or bracket notation)") .argument("", "Value (JSON5 or raw string)") - .option("--json", "Parse value as JSON5 (required)", false) + .option("--json", "Strict JSON5 parsing (error instead of raw string fallback)", false) .action(async (path: string, value: string, opts) => { try { const parsedPath = parsePath(path);