(options, configFile)
| 41441 | ts.parseJsonSourceFileConfigFileContent = parseJsonSourceFileConfigFileContent; |
| 41442 | /*@internal*/ |
| 41443 | function setConfigFileInOptions(options, configFile) { |
| 41444 | if (configFile) { |
| 41445 | Object.defineProperty(options, "configFile", { enumerable: false, writable: false, value: configFile }); |
| 41446 | } |
| 41447 | } |
| 41448 | ts.setConfigFileInOptions = setConfigFileInOptions; |
| 41449 | function isNullOrUndefined(x) { |
| 41450 | return x === undefined || x === null; // eslint-disable-line no-null/no-null |
no test coverage detected