(file: JSONCFile<any>, path: JSONPath, value: any)
| 296 | } |
| 297 | |
| 298 | function updateTsConfigFile(file: JSONCFile<any>, path: JSONPath, value: any): JSONCFile<any> { |
| 299 | return file.updating(path, value, { |
| 300 | formattingOptions: { |
| 301 | insertSpaces: true, |
| 302 | }, |
| 303 | }); |
| 304 | } |
| 305 | |
| 306 | async function processTsConfigDir( |
| 307 | tsConfigDir: TsConfigDir, |
no test coverage detected