when I have such code ```fsharp html $"""<script type="module" src="{script}.js"></script>""" ``` it works but intellisense dies for script variable When I do below all is fine ```fsharp html $"""<script type="module" src='{script}.js'></script>""" ```