Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JscConfig

interface JscConfig {
baseUrl?: string;
experimental?: {
optimizeHygiene?: boolean;
keepImportAssertions?: boolean;
cacheRoot?: string;
plugins?: Array<[string, Record<string, any>]>;
}
;
externalHelpers?: boolean;
keepClassNames?: boolean;
loose?: boolean;
minify?: JsMinifyOptions;
parser?: ParserConfig;
paths?: {
[from: string]: string[];
}
;
preserveAllComments?: boolean;
target?: JscTarget;
transform?: TransformConfig;
}

§Properties

§
baseUrl?: string
[src]
§
experimental?: {
optimizeHygiene?: boolean;
keepImportAssertions?: boolean;
cacheRoot?: string;
plugins?: Array<[string, Record<string, any>]>;
}
[src]
§
externalHelpers?: boolean
[src]

Use @swc/helpers instead of inline helpers.

§
keepClassNames?: boolean
[src]

Keep class names.

§
loose?: boolean
[src]
§

Defaults to EsParserConfig

§
paths?: {
[from: string]: string[];
}
[src]
§
preserveAllComments?: boolean
[src]
§

Defaults to es3 (which enabled all pass).