At the moment I’m working on a WASM module that has a quite large codebase. What I do is basically:
- Load my project (aircraft) in MSFS
- Do some changes in my code
- Compile the code to wasm in VS
- Resync the aircraft, which takes about a minute or so
- 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?