The existing code for the QueryService GUI uses plain Javascript files without any module support and requires the packaging system to individually import and run all script files. To use the code with a more modern build system it would be helpful if the code were using Javascript Modules so that the entrypoint in a single Javascript file automatically pulls in all the other application source.
Convert the codebase to use Javacsript Modules.
Acceptance Criteria
- The application can be loaded by importing the init.js or embedInit.js file, without referencing all other application source files in the HTML page.