(configFileName)
| 123820 | return parsedCommandLine; |
| 123821 | } |
| 123822 | function getParsedCommandLineFromConfigFileHost(configFileName) { |
| 123823 | // Ignore the file absent errors |
| 123824 | var onUnRecoverableConfigFileDiagnostic = parseConfigFileHost.onUnRecoverableConfigFileDiagnostic; |
| 123825 | parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = ts.noop; |
| 123826 | var parsedCommandLine = ts.getParsedCommandLineOfConfigFile(configFileName, |
| 123827 | /*optionsToExtend*/ undefined, parseConfigFileHost, extendedConfigCache || (extendedConfigCache = new ts.Map()), watchOptionsToExtend); |
| 123828 | parseConfigFileHost.onUnRecoverableConfigFileDiagnostic = onUnRecoverableConfigFileDiagnostic; |
| 123829 | return parsedCommandLine; |
| 123830 | } |
| 123831 | function onReleaseParsedCommandLine(fileName) { |
| 123832 | var _a; |
| 123833 | var path = toPath(fileName); |
no outgoing calls
no test coverage detected