我正在使用SystemJs。这是我的配置:
System.config({
defaultJSExtensions: true,
paths: {
app: '/app/*',//for app look in app
'*': '/node_modules/*' //for rest look in node_modules
},
});
System.import('app/boot')
.then(null, console.error.bind(console));
使用该配置浏览器在node_modules/app/boot.js
中寻找文件 - 为什么?对于app
,它应该在/app/*