We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799e749 commit 7d4feedCopy full SHA for 7d4feed
src/bin/index.ts
@@ -10,7 +10,7 @@ program
10
.option('-p, --project <file>', 'path to tsconfig.json')
11
.option('-w, --watch', 'Observe file changes')
12
.option(
13
- '--outDir, --dir, --directory <dir>',
+ '--outDir, --dir <dir>',
14
'Run in a folder leaving the "outDir" of the tsconfig.json (relative path to tsconfig)'
15
)
16
@@ -36,7 +36,7 @@ const options = program.opts();
36
replaceTscAliasPaths({
37
configFile: options.project,
38
watch: !!options.watch,
39
- outDir: options.directory,
+ outDir: options.dir,
40
verbose: !!options.verbose,
41
debug: !!options.debug,
42
resolveFullPaths: !!options.resolveFullPaths,
0 commit comments