my script was something like this
ts-node-dev --respawn --inspect --transpileOnly ./src/index.ts
after upgrading to 1.0.0 the following error was shown
ts-node-dev: no script to run provided
Usage: ts-node-dev [options] script [arguments]
I had to change --transpileOnly to --transpile-only to have it work again.
A better error message would be nice.
I guess it is already fixed since i am receiving another error (the correct one)

This one took me two hours to find.. guess I'm not very smart.
the error message about not finding the script is veryh misleading.
It took me an hour before I found the solution. I kept moving my files and hoping that it will find the script. When all I had to do is change --transpileOnly to --transpile-only
It took me an hour before I found the solution. I kept moving my files and hoping that it will find the script. When all I had to do is change
--transpileOnlyto--transpile-only
This solved my issue! Thanks @temurih
It took me an hour before I found the solution. I kept moving my files and hoping that it will find the script. When all I had to do is change
--transpileOnlyto--transpile-only
It worked! Thanks
Most helpful comment
It took me an hour before I found the solution. I kept moving my files and hoping that it will find the script. When all I had to do is change
--transpileOnlyto--transpile-only