Hello 👋
Are there any compiler flags or plugins to improve performance when building projects with 10000+ kotlin files (generated code)?
Each package is independent, meaning that it does not import anything from other packages (there are ~20 files per package).
I wrote a script that essentially did
kotlinc package1; kotlinc package2; kotlinc package3; ...
in parallel and was able to get rid of the out of memory error.
Are there any better alternatives? Can Gradle help me here?