I have search everywhere for this answer, and I thinking it can't be done.
Here is my compiler-config.groovy file:
import groovy.transform.CompileStatic
withConfig(configuration) {
ast(CompileStatic)
}
What i want to do is add some additional config params to turn off Type Checking. In essence I want my entire groovy project compiled static but I dont want it to do any type checking. Is this possible?