()
| 110100 | undefined; |
| 110101 | } |
| 110102 | function createAddOutput() { |
| 110103 | var outputs; |
| 110104 | return { addOutput: addOutput, getOutputs: getOutputs }; |
| 110105 | function addOutput(path) { |
| 110106 | if (path) { |
| 110107 | (outputs || (outputs = [])).push(path); |
| 110108 | } |
| 110109 | } |
| 110110 | function getOutputs() { |
| 110111 | return outputs || ts.emptyArray; |
| 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); |
no outgoing calls
no test coverage detected
searching dependent graphs…