No importa lo que hago no puedo conseguir el compilador TSC imprenta para encontrar cualquier archivo. He intentado tanto el TSC que viene con la extensión de Visual Studio y la que proviene de la NGP. He intentado en el shell de Windows de línea de comandos Node.js y el Git Bash shell. No importa lo que haga, sólo se dice que el archivo no se encuentra. He leído que el compilador sólo funcionará para Ts y archivos .str, pero eso no parece ser el problema.
Aquí está un ejemplo rápido de lo que estoy viendo. Sé que estos archivos estarán vacíos, pero lo he intentado todo esto con archivos que contienen código y eso no cambia nada.
C:\>touch test.ts
C:\>ls *.ts
test.ts
C:\>tsc test.ts
Error reading file test.ts: File not found
C:\>tsc C:\test.ts
Error reading file C:\test.ts: File not found
C:\>touch test.str
C:\>tsc test.str
Error reading file test.str: File not found
C:\>tsc ./test.str
Error reading file ./test.str: File not found
C:\>tsc ./test.ts
Error reading file ./test.ts: File not found
C:\>touch test.js.ts
C:\>tsc test.ts
Error reading file test.ts: File not found
C:\>tsc test.js
Error reading file test.js: File not found













