I want to disable the ability to use "any" in typescript. For example, I have the following function
func() {
return true
}
i want to require it to be this
func(): boolean {
return true
}
I know TSLint can check for this, but I can ignore it and still compile. Is there anyway to require this in order to compile in the TSConfig file?