(options, forceDtsPaths)
| 110039 | ts.getTsBuildInfoEmitOutputFilePath = getTsBuildInfoEmitOutputFilePath; |
| 110040 | /*@internal*/ |
| 110041 | function getOutputPathsForBundle(options, forceDtsPaths) { |
| 110042 | var outPath = ts.outFile(options); |
| 110043 | var jsFilePath = options.emitDeclarationOnly ? undefined : outPath; |
| 110044 | var sourceMapFilePath = jsFilePath && getSourceMapFilePath(jsFilePath, options); |
| 110045 | var declarationFilePath = (forceDtsPaths || ts.getEmitDeclarations(options)) ? ts.removeFileExtension(outPath) + ".d.ts" /* Extension.Dts */ : undefined; |
| 110046 | var declarationMapPath = declarationFilePath && ts.getAreDeclarationMapsEnabled(options) ? declarationFilePath + ".map" : undefined; |
| 110047 | var buildInfoPath = getTsBuildInfoEmitOutputFilePath(options); |
| 110048 | return { jsFilePath: jsFilePath, sourceMapFilePath: sourceMapFilePath, declarationFilePath: declarationFilePath, declarationMapPath: declarationMapPath, buildInfoPath: buildInfoPath }; |
| 110049 | } |
| 110050 | ts.getOutputPathsForBundle = getOutputPathsForBundle; |
| 110051 | /*@internal*/ |
| 110052 | function getOutputPathsFor(sourceFile, host, forceDtsPaths) { |
no test coverage detected
searching dependent graphs…