MCPcopy
hub / github.com/danvk/source-map-explorer / Arguments

Interface Arguments

src/cli/cli.ts:17–31  ·  view source on GitHub ↗

Parsed CLI arguments

Source from the content-addressed store, hash-verified

15
16/** Parsed CLI arguments */
17interface Arguments {
18 _: string[];
19 json?: string;
20 tsv?: string;
21 html?: string;
22 onlyMapped?: boolean;
23 excludeSourceMap?: boolean;
24 noRoot?: boolean;
25 replace?: string[];
26 with?: string[];
27 noBorderChecks?: boolean;
28 coverage?: string;
29 gzip?: boolean;
30 sort?: boolean;
31}
32
33function parseArguments(): Arguments {
34 const argv = yargs

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…