The TypeScript compiler (tsc) emits valid JS even when it has type errors. I am in a situation where I need to compile a TypeScript project to JS but cannot install the required .d.ts files for it to correctly type check.
Is there a way I can get tsc to ignore any type errors, but still show other kinds of errors such as syntax errors?
Thanks