Blazor (WASM) supports libraries containing javascript (besides other static contents and components).
Javascript files can be referenced with standard <script> elements in the index.html page of the main project
/_content/<library>/<path>/<file.js>
where <path>/<file.js> must be located under the wwwroot folder of the library project.
What if my library is F# instead of C#? We can write components in F# (of course all in .fs files, no .razor), but what if I want also to put javascript specific to the component in the same F# project?
BTW similar question would apply to .css
Please note: