JsFormatOptions
These properties are mostly not implemented yet, but it exists to support passing terser config to swc minify without modification.
interface JsFormatOptions {
asciiOnly?: boolean;
beautify?: boolean;
braces?: boolean;
comments?: false | "some" | "all";
ecma?: TerserEcmaVersion;
indentLevel?: number;
indentStart?: number;
inlineScript?: number;
keepNumbers?: number;
keepQuotedProps?: boolean;
maxLineLen?: number | false;
preamble?: string;
preserveAnnotations?: boolean;
quoteKeys?: boolean;
quoteStyle?: boolean;
safari10?: boolean;
semicolons?: boolean;
shebang?: boolean;
webkit?: boolean;
wrapFuncArgs?: boolean;
wrapIife?: boolean;
}