I'm getting this error
error TS6053: File 'xxx.ts' not found.
but the files compiles fine yesterday, but today no, after reviewing, I made this simple test
class HelloWorld { public static main(): number{ return 0; } } HelloWorld.main(); but I get the same error, anyone know the reason for this or may be the error
error TS6053: File 'HelloWorld.ts' not found.
https://github.com/Microsoft/TypeScript/blob/v1.6.2/src/compiler/diagnosticMessages.json#L2205
UPDATE:
Closing the ide, and open the error does not solve everything was the same.
Opened the ide,
file > folder close
file > open folder > your folder
this fix the error.
