From db693ddac2a221e0ac41d76d2ed740c3d3f48024 Mon Sep 17 00:00:00 2001 From: epicmau5time Date: Fri, 10 May 2024 15:11:57 -0400 Subject: [PATCH] fix: passed incorrect property --- src/bin/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/index.ts b/src/bin/index.ts index 8ac5d58..052891d 100755 --- a/src/bin/index.ts +++ b/src/bin/index.ts @@ -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']) @@ -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,