(_a)
| 41316 | return Array(paddingLength + 1).join(" "); |
| 41317 | } |
| 41318 | function isAllowedOptionForOutput(_a) { |
| 41319 | var category = _a.category, name = _a.name, isCommandLineOnly = _a.isCommandLineOnly; |
| 41320 | // Skip options which do not have a category or have categories which are more niche |
| 41321 | var categoriesToSkip = [ts.Diagnostics.Command_line_Options, ts.Diagnostics.Editor_Support, ts.Diagnostics.Compiler_Diagnostics, ts.Diagnostics.Backwards_Compatibility, ts.Diagnostics.Watch_and_Build_Modes, ts.Diagnostics.Output_Formatting]; |
| 41322 | return !isCommandLineOnly && category !== undefined && (!categoriesToSkip.includes(category) || compilerOptionsMap.has(name)); |
| 41323 | } |
| 41324 | function writeConfigurations() { |
| 41325 | // Filter applicable options to place in the file |
| 41326 | var categorizedOptions = ts.createMultiMap(); |
no test coverage detected