Olá, Flávio, Excelente curso, parabéns! Não estou conseguindo fazer meu Systemjs enxergar o boot.js
<script src="node_modules/systemjs/dist/system.js"></script>
<script>
System.defaultJSExtensions = true;
System.import('js/app/boot').catch(function(err){
console.error(err);
});
</script>
Porém estou recebendo erro 404
http://localhost:3000/js/app/boot 404 (Not Found)
mas o arquivo está dentro da pasta js/app (a versão transcompilada), certinho.
Meu arquivo boot.js está assim (dentro de js/app-es6):
import {currentIntance} from './controllers/NegociacaoController';
import {} from './polyfill/fetch';
let negociacaoController = currentIntance();
document.querySelector('.form').onsubmit = negociacaoController.adiciona.bind(negociacaoController);
document.querySelector('button[type=button]').onclick = negociacaoController.remove.bind(negociacaoController);