Estou tentando rodar o Babel mas está retornando um erro tipo #8. Unable to resolve bare specifier 'js/app/boot.js' from http://localhost:3000/ (SystemJS Error#8
No github vi uma descriçao do erro e sua possivel solução. [https://github.com/systemjs/systemjs/blob/main/docs/errors.md#8].
Alterei tambem por segurança o index.html e todos os imports (adicionei .js)
"
<script type="systemjs-importmap">
{
"imports": {
"vue": "node_modules/systemjs/dist/system.min.js". // testei várias possibilidades, inclusive a sugerida
}
}
</script>
<script>
// The "vue" specifier will now be "resolved" to https://unpkg.com/vue
System.import('vue');
</script>
<script>
// System.defaultJSExtensions = true;
System.import("js/app/boot.js").catch(function (err) {
console.error(err);
});
</script>"
O erro permanece..