I'm building a prototype project, and it has a bunch of TypeScript errors. I want to try quickly compiling it while ignoring all the errors, and get around to fixing them at a later time.
I know about adding // @ts-ignore comment at the beginning of the file, but how can I do that for ALL the files? Is there some kind of flag I can add to tsc, or some linke I can add to tsconfig.json to make it ignore all the errors entirely and compile anyway?