Hi,
I am trying to get my js app compiling as fast as possible. I have a component library (wrapper for React Material UI) which I have compiled down to a jar and added to my local maven repository in the hope that this code won’t get fully compiled in my app that uses the library.
My simple app using the library takes around 9 seconds to build. Exploring the Gradle build scan, I see that about the 9 Seconds is taken up in jsCompileClasspath.
Can anyone tell me if this is this the actual js compilation time or is there some time taken up in some type of dependency resolution which I might be able to fix/shorten.
Just trying to get code change / browser update cycle as fast as possible, as using react directly is pretty quick… just don’t want to add too much time to the cycle otherwise it won’t be worth using it…
Thanks for any pointers,
Colin