({ pretty }: ts.CompilerOptions = {})
| 10 | import * as performance from "./measure-performance"; |
| 11 | |
| 12 | const shouldBePretty = ({ pretty }: ts.CompilerOptions = {}) => |
| 13 | pretty !== undefined ? (pretty as boolean) : ts.sys.writeOutputIsTTY?.() ?? false; |
| 14 | |
| 15 | let reportDiagnostic = createDiagnosticReporter(false); |
| 16 | function updateReportDiagnostic(options?: ts.CompilerOptions): void { |
no outgoing calls
no test coverage detected