I have strict mode turned on in my tsconfig.json. I'm having trouble bending some parts of my code to the will of the compiler. Instead of turning the setting off for the entire project, is there a way to mark specific files or - even better - blocks of code with reduced stringency?
So I'm thinking something like this.
function foo() {
// implicitAny not allowed here
/// noImplicitAny false
// implicitAny allowed here
/// noImplicitAny true
}
I thought that triple dash directives might help, but they don't appear to.
Thanks :-)