(configFileName)
| 41845 | } |
| 41846 | ts.convertTypeAcquisitionFromJson = convertTypeAcquisitionFromJson; |
| 41847 | function getDefaultCompilerOptions(configFileName) { |
| 41848 | var options = configFileName && ts.getBaseFileName(configFileName) === "jsconfig.json" |
| 41849 | ? { allowJs: true, maxNodeModuleJsDepth: 2, allowSyntheticDefaultImports: true, skipLibCheck: true, noEmit: true } |
| 41850 | : {}; |
| 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); |
no outgoing calls
no test coverage detected