(options?: ts.CompilerOptions)
| 18 | } |
| 19 | |
| 20 | function createWatchStatusReporter(options?: ts.CompilerOptions): ts.WatchStatusReporter { |
| 21 | return ts.createWatchStatusReporter(ts.sys, shouldBePretty(options)); |
| 22 | } |
| 23 | |
| 24 | function executeCommandLine(args: string[]): void { |
| 25 | if (args.length > 0 && args[0].startsWith("-")) { |
no test coverage detected