Parsed CLI arguments
| 15 | |
| 16 | /** Parsed CLI arguments */ |
| 17 | interface 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 | |
| 33 | function parseArguments(): Arguments { |
| 34 | const argv = yargs |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…