* Parse the contents of a config file (tsconfig.json). * @param json The contents of the config file to parse * @param host Instance of ParseConfigHost used to enumerate files in folder. * @param basePath A root directory to resolve relative path entries in the config * file t
(json, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions)
| 41422 | * file to. e.g. outDir |
| 41423 | */ |
| 41424 | function parseJsonConfigFileContent(json, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions) { |
| 41425 | return parseJsonConfigFileContentWorker(json, /*sourceFile*/ undefined, host, basePath, existingOptions, existingWatchOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache); |
| 41426 | } |
| 41427 | ts.parseJsonConfigFileContent = parseJsonConfigFileContent; |
| 41428 | /** |
| 41429 | * Parse the contents of a config file (tsconfig.json). |
nothing calls this directly
no test coverage detected