I have a bunch of JS file that I would like to convert to TS files without having to add any typing or introducing a lot of changes.
I know I can use // @ts-ignore
on the lines that I want the compiler to ignore, but is there a way to ignore the entire file?
I still would like to output a JS file, but as is, with all the errors ignores.