(jsonOptions, basePath, errors, configFileName)
| 41851 | return options; |
| 41852 | } |
| 41853 | function convertCompilerOptionsFromJsonWorker(jsonOptions, basePath, errors, configFileName) { |
| 41854 | var options = getDefaultCompilerOptions(configFileName); |
| 41855 | convertOptionsFromJson(getCommandLineCompilerOptionsMap(), jsonOptions, basePath, options, ts.compilerOptionsDidYouMeanDiagnostics, errors); |
| 41856 | if (configFileName) { |
| 41857 | options.configFilePath = ts.normalizeSlashes(configFileName); |
| 41858 | } |
| 41859 | return options; |
| 41860 | } |
| 41861 | function getDefaultTypeAcquisition(configFileName) { |
| 41862 | return { enable: !!configFileName && ts.getBaseFileName(configFileName) === "jsconfig.json", include: [], exclude: [] }; |
| 41863 | } |
no test coverage detected