(text: string)
| 57 | |
| 58 | /** Remove the project-level dreamer override while preserving the rest of the config file. */ |
| 59 | export function removeDreamerBlockJsonc(text: string): string { |
| 60 | const root = parseRoot(text); |
| 61 | delete root.dreamer; |
| 62 | return stringifyJsonc(root); |
| 63 | } |
no test coverage detected