(jsonOptions, basePath, configFileName)
| 41833 | return typeof result === "boolean" && result; |
| 41834 | } |
| 41835 | function convertCompilerOptionsFromJson(jsonOptions, basePath, configFileName) { |
| 41836 | var errors = []; |
| 41837 | var options = convertCompilerOptionsFromJsonWorker(jsonOptions, basePath, errors, configFileName); |
| 41838 | return { options: options, errors: errors }; |
| 41839 | } |
| 41840 | ts.convertCompilerOptionsFromJson = convertCompilerOptionsFromJson; |
| 41841 | function convertTypeAcquisitionFromJson(jsonOptions, basePath, configFileName) { |
| 41842 | var errors = []; |
nothing calls this directly
no test coverage detected