I need a plugin that would automatically add <script> tags to HTML files.
Now I use tsify and browserify to compile my typescript files and bind them into a single JavaScript file. It works fine, but for development and debug purposes it isn't convenient that all the code gets packed into a single file.
I don’t want to add <script> tags manually. Is there any solution for adding <script> tags to include all the needed .js files separately?