(name: string | undefined, relativeToPath: string)
| 343 | } |
| 344 | |
| 345 | function resolveCompiler(name: string | undefined, relativeToPath: string) { |
| 346 | const projectLocalResolveHelper = |
| 347 | createProjectLocalResolveHelper(relativeToPath); |
| 348 | const compiler = projectLocalResolveHelper(name || 'typescript', true); |
| 349 | return { compiler }; |
| 350 | } |
| 351 | |
| 352 | /** @internal */ |
| 353 | export function loadCompiler(compiler: string): TSCommon { |
no test coverage detected
searching dependent graphs…