How can I use HMR(Hot Module Replacement) when develop theia extension?

Or does theia support this efficient dev mode。

More detail to describe what I want is:

when I change some code in *.ts file,I don’t need to re execute command such as

yarn start:electron,file changes will make exist running project change after webpack’s complie.

@RogueSword there is no HMR, but if you really don’t want to run compile and build on each change, then you can see if watching is a better workflow for you.

Ok,Although it’s not the best as I expected like hmr, but it can
really improve efficiency.

Thanks~ Bro