Highlight JS code inside XML element or inside CDATA in VS code

I want to have JS syntax highlighting inside certain XML elements. E.g.

 <Module Name="Main">
<![CDATA[
   var obj = {};
   obj.car = { Name: 'car', HP: 135};
   obj.drive = function(car){...}
]]></Module>

This currently shows up as

image

Is there any extension that enables highlighting of the JS inside the element or do i have to do something custom?

I tried all kinds of XML extensions, none seem to have that integrated.