Skip to content

Commit

Permalink
Fix using bundled TS for getDefaultLibFileName
Browse files Browse the repository at this point in the history
  • Loading branch information
ypresto committed Jun 17, 2021
1 parent 6cb6a97 commit ed4f1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doctor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class Doctor {
);
const compilerOptions = parsed.options

const defaultLibFileName = _ts.getDefaultLibFileName(compilerOptions)
const defaultLibFileName = ts.getDefaultLibFileName(compilerOptions)
const libs = [defaultLibFileName, ...(compilerOptions.lib || [])]
const allLibs = getAllLibs(uniq(libs))

Expand Down

0 comments on commit ed4f1e7

Please sign in to comment.