MCPcopy Index your code
hub / github.com/nodejs/node / getAllProjectOutputs

Function getAllProjectOutputs

test/fixtures/snapshot/typescript.js:110172–110186  ·  view source on GitHub ↗
(configFile, ignoreCase)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 7

createAddOutputFunction · 0.85
getSingleOutputFileNamesFunction · 0.85
getOwnOutputFileNamesFunction · 0.85
addOutputFunction · 0.85
getOutputsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…