By default, all enum sources must have a defined target. This can be disabled by adding the following configuration to the build.gradle.kts file

mappie {
    strictness {
        enums = true // Do not report an error if not all enum sources are mapped 
    }
}

Note that this might result in a NoWhenBranchMatchedException being thrown at runtime.