How to speed up WASM development?

At the moment I’m working on a WASM module that has a quite large codebase. What I do is basically:

  1. Load my project (aircraft) in MSFS
  2. Do some changes in my code
  3. Compile the code to wasm in VS
  4. Resync the aircraft, which takes about a minute or so
  5. Wait for the WASM to be compiled by the sim (with the fast wasm compile option turned on), which takes 4 minutes

This way, anytime I do even a slight change, I must wait 5 minutes before seeing it in the sim.
Any suggestion on how I can speedup this process?