Bez względu na to, co robię, nie mogę dostać kompilator TSC maszynopis znaleźć żadnych plików. Próbowałem zarówno TSC, że pochodzi z programu Visual Studio rozszerzenie i jeden, który pochodzi z KMP. Próbowałem w node.js okna wiersza poleceń powłoki, a Git Bash powłoki. Bez względu na to, co robię, to po prostu mówi, że plik nie został znaleziony. Czytałem, że kompilator będzie działać tylko dla .TS i plików .str, ale to nie wydaje się być problemem.
Oto krótki przykład tego, co widzę. Wiem, że pliki te będą puste, ale próbowałem to wszystko z plikami zawierającymi kod i to niczego nie zmienia.
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













