You read that right. I want TypeScript to allow ANYTHING. I have to use a library that's causing all sorts of ts errors when I compile the code that I can't seem to fix no matter what I've tried. I've been going through SO questions like these:
TypeScript skipLibCheck still checking node_modules libs
I have found a glimmer of hope. adding "noImplicitAny": false
to my tsconfig.json
's compilerOptions
did get rid of the implicit any bugs. So now I'm wondering if there's a TS settings that will just allow anything. I know this is bad practice, but I just want my bundler to stop complaining and transpile my code. I don't care if I have a TypeScript file that passes a number to a function that only accept strings!