Closed sdavids closed 11 months ago
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap
<script type="importmap"> { "imports": { "shapes/": "./module/shapes/", "othershapes/": "https://example.com/modules/shapes/" } } </script>
⇓
<script type="importmap">{"imports":{"shapes/":"./module/shapes/","othershapes/":"https://example.com/modules/shapes/"}}</script>
Basically JSON.stringify(JSON.parse(scriptElement.textContent)).
JSON.stringify(JSON.parse(scriptElement.textContent))
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap
⇓
Basically
JSON.stringify(JSON.parse(scriptElement.textContent))
.