何をしても、TSCTypescriptコンパイラにファイルを検索させることができません。VisualStudioExtensionに付属しているtscとnpmに付属しているtscの両方を試しました。Node.jsコマンドラインのWindowsシェルとGitBashシェルで試しました。私が何をしても、ファイルが見つからないと言っているだけです。コンパイラは.tsファイルと.strファイルに対してのみ機能することを読みましたが、それは問題ではないようです。
これが私が見ているものの簡単な例です。これらのファイルが空になることはわかっていますが、コードを含むファイルでこれらすべてを試しましたが、何も変更されません。
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