(configFile, addOutput)
| 110112 | } |
| 110113 | } |
| 110114 | function getSingleOutputFileNames(configFile, addOutput) { |
| 110115 | var _a = getOutputPathsForBundle(configFile.options, /*forceDtsPaths*/ false), jsFilePath = _a.jsFilePath, sourceMapFilePath = _a.sourceMapFilePath, declarationFilePath = _a.declarationFilePath, declarationMapPath = _a.declarationMapPath, buildInfoPath = _a.buildInfoPath; |
| 110116 | addOutput(jsFilePath); |
| 110117 | addOutput(sourceMapFilePath); |
| 110118 | addOutput(declarationFilePath); |
| 110119 | addOutput(declarationMapPath); |
| 110120 | addOutput(buildInfoPath); |
| 110121 | } |
| 110122 | function getOwnOutputFileNames(configFile, inputFileName, ignoreCase, addOutput, getCommonSourceDirectory) { |
| 110123 | if (ts.isDeclarationFileName(inputFileName)) |
| 110124 | return; |
no test coverage detected
searching dependent graphs…