Skip to content

Commit

Permalink
fix: passed incorrect property
Browse files Browse the repository at this point in the history
  • Loading branch information
epicmau5time authored May 10, 2024
1 parent 71ea53d commit db693dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ program
)
.addOption(
new Option(
'-fe, --resolveFullExtension [ext]',
'-fe, --resolve-full-extension [ext]',
'Specify the extension of incomplete import paths, works with resolveFullPaths'
)
.choices(['.js', '.mjs', '.cjs'])
Expand All @@ -42,7 +42,7 @@ program
const options = program.opts();

replaceTscAliasPaths({
resolveFullExtension: options.resolveFullPaths,
resolveFullExtension: options.resolveFullExtension,
configFile: options.project,
watch: !!options.watch,
outDir: options.dir,
Expand Down

0 comments on commit db693dd

Please sign in to comment.