(tsConfigSourceFile, propKey, elementValue)
| 15829 | } |
| 15830 | ts.getTsConfigObjectLiteralExpression = getTsConfigObjectLiteralExpression; |
| 15831 | function getTsConfigPropArrayElementValue(tsConfigSourceFile, propKey, elementValue) { |
| 15832 | return ts.firstDefined(getTsConfigPropArray(tsConfigSourceFile, propKey), function (property) { |
| 15833 | return ts.isArrayLiteralExpression(property.initializer) ? |
| 15834 | ts.find(property.initializer.elements, function (element) { return ts.isStringLiteral(element) && element.text === elementValue; }) : |
| 15835 | undefined; |
| 15836 | }); |
| 15837 | } |
| 15838 | ts.getTsConfigPropArrayElementValue = getTsConfigPropArrayElementValue; |
| 15839 | function getTsConfigPropArray(tsConfigSourceFile, propKey) { |
| 15840 | var jsonObjectLiteral = getTsConfigObjectLiteralExpression(tsConfigSourceFile); |
nothing calls this directly
no test coverage detected