My directory has 2 files: a tsconfig.json
with simply {}
and a hello.ts with a line that says console.log('help!!');
.
When I run tsc hello
I get the additional hello.js
as expected.
If I delete hello.js
and run tsc
intending to pick up my configuration I get nothing. No error message, no hello.js
. I'm sure I'm missing something easy!
NOTE: My hypersimple tsconfig is just for purposes of this discussion. I have tried several options including the simple one created with tsc --init
. I don't want to include files
specifically but have tsc
pick up all the files in my folder as documented.