I'm currently debugging a local Node.js solution and I was wondering, is it possible to add an importmap to Node.js so I can use Import with resource name?
My import map:
<script type="importmap">
{
"imports": {
"options": "https://assets.sltech.no/SHARED/JS/OptionsFactory.js",
"webrequest": "https://assets.sltech.no/SHARED/JS/WebRequest.js",
"utility": "https://assets.sltech.no/SHARED/JS/Utility.js",
"logger": "https://assets.sltech.no/SHARED/JS/Logger.js",
"resources": "https://assets.sltech.no/SHARED/JS/ResourceAccessor.js"
}
}