I'm trying to compile all the files .ts
but I get that error
on my console
error ts6053 file '*.ts' not found
the command that I execute is:
tsc -w *.ts
but if I specify my file, for example tsc -w demo.ts
normal compiles (transpiles) the version of my typescript is 2.0.9
, how can I compile all my files .ts
automatically (with the -w
I achieved that). Thanks