(fileName, basePath)
| 41450 | return x === undefined || x === null; // eslint-disable-line no-null/no-null |
| 41451 | } |
| 41452 | function directoryOfCombinedPath(fileName, basePath) { |
| 41453 | // Use the `getNormalizedAbsolutePath` function to avoid canonicalizing the path, as it must remain noncanonical |
| 41454 | // until consistent casing errors are reported |
| 41455 | return ts.getDirectoryPath(ts.getNormalizedAbsolutePath(fileName, basePath)); |
| 41456 | } |
| 41457 | /** |
| 41458 | * Parse the contents of a config file from json or json source file (tsconfig.json). |
| 41459 | * @param json The contents of the config file to parse |
no outgoing calls
no test coverage detected