Non importa quello che faccio non riesco a ottenere il compilatore TSC tipografico per trovare tutti i file. Ho provato sia la TSC che viene fornito con Visual Studio Estensione e quello che viene da NPM. Ho provato nelle finestre della riga di comando di shell Node.js, e la shell Bash Git. Non importa quello che faccio, si dice solo il file non viene trovato. Ho letto che il compilatore funziona solo per Ts e file .STR, ma che non sembra essere il problema.
Ecco un rapido esempio di quello che sto vedendo. So che questi file saranno vuote, ma ho provato tutto questo con i file che contengono il codice e non cambia nulla.
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













