Ne yaparsam ne herhangi bir dosya bulmak için TSC typescript derleyici alınamıyor. Ben Visual Studio Yayım ve NPM gelen biri ile birlikte hem tsc çalıştılar. Ben node.js komut satırı pencereleri kabuğunda çalıştı ve Git Bash kabuğu ettik. Hayır yaparsam yapayım, sadece dosya bulunamadı diyor. Ben derleyici sadece ts ve .str dosyaları için çalışacağını okumuştum ama bu sorun olarak görünmüyor.
İşte gördüğüm şey hızlı bir örnektir. Ben bu dosyaları boş olacaktır biliyorum ama kodu içeren dosyaları ile tüm bu denedim ve hiçbir şey değişmez.
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













