(configFile, ignoreCase)
| 110170 | ts.getCommonSourceDirectoryOfConfig = getCommonSourceDirectoryOfConfig; |
| 110171 | /*@internal*/ |
| 110172 | function getAllProjectOutputs(configFile, ignoreCase) { |
| 110173 | var _a = createAddOutput(), addOutput = _a.addOutput, getOutputs = _a.getOutputs; |
| 110174 | if (ts.outFile(configFile.options)) { |
| 110175 | getSingleOutputFileNames(configFile, addOutput); |
| 110176 | } |
| 110177 | else { |
| 110178 | var getCommonSourceDirectory_1 = ts.memoize(function () { return getCommonSourceDirectoryOfConfig(configFile, ignoreCase); }); |
| 110179 | for (var _b = 0, _c = configFile.fileNames; _b < _c.length; _b++) { |
| 110180 | var inputFileName = _c[_b]; |
| 110181 | getOwnOutputFileNames(configFile, inputFileName, ignoreCase, addOutput, getCommonSourceDirectory_1); |
| 110182 | } |
| 110183 | addOutput(getTsBuildInfoEmitOutputFilePath(configFile.options)); |
| 110184 | } |
| 110185 | return getOutputs(); |
| 110186 | } |
| 110187 | ts.getAllProjectOutputs = getAllProjectOutputs; |
| 110188 | function getOutputFileNames(commandLine, inputFileName, ignoreCase) { |
| 110189 | inputFileName = ts.normalizePath(inputFileName); |
nothing calls this directly
no test coverage detected
searching dependent graphs…