Is there a plugin available that can automatically include <script>
tags in HTML files? Currently, I am using tsify and browserify to compile my typescript files into a single JavaScript file. While this process works well, it can be inconvenient during development and debugging as all the code is bundled together in one file.
I do not want to manually add <script>
tags. Are there any solutions that can help include all the required .js files separately?