This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Description
In typescript, the meta http-equiv is not allowed:
{
'http-equiv': 'X-UA-Compatible',
content: 'IE=edge,chrome=1'
},
In the types, I found MetaPropertyEquiv with httpEquiv, so I fix with:
{
httpEquiv: 'X-UA-Compatible',
content: 'IE=edge,chrome=1'
},
If I use this, the result is httpequiv, not http-equiv:
<meta data-n-head="1" httpequiv="X-UA-Compatible" content="IE=edge,chrome=1">
How to fix this issue in typescript?