Skip to content

Commit 4c416c0

Browse files
--transpileOnly option changed with --transpile-only
ts-node doesn't have --transpileOnly option. It looks like little typo issue, i've tested it on my machine and it works fine if it's --transpile-only.
1 parent 2b588c8 commit 4c416c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package-scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function run(path) {
291291
}
292292

293293
function runFast(path) {
294-
return `ts-node --transpileOnly ${path}`;
294+
return `ts-node --transpile-only ${path}`;
295295
}
296296

297297
function tslint(path) {

0 commit comments

Comments
 (0)