( format: string | Formatter<unknown> )
| 113 | } |
| 114 | |
| 115 | function isBuiltinFormatter( |
| 116 | format: string | Formatter<unknown> |
| 117 | ): format is string { |
| 118 | return typeof format === 'string' && BUILTIN_FORMATTERS.has(format) |
| 119 | } |
| 120 | |
| 121 | async function compileWithCustomFormatter( |
| 122 | inputFiles: string[], |