我试图将 https://github.com/valor-software/ng2-dragula 注入到使用JSPM包管理器统治的Angular2项目中。但是当我导入它主引导时.js文件无法编译...我之前找到的唯一解决方案是将项目转移到 webpack 管理。还有其他解决方案吗?
只需确保在索引中包含 .js 个 dragula 文件.html并配置 SystemJS 路径。
<script src="/node_modules/dragula/dist/dragula.min.js"></script>
<script src="/node_modules/ng2-dragula/bundles/ng2-dragula.js"></script>
<script>
System.config({
paths:{
'dragula' : '../node_modules/dragula/dist/dragula.min.js'
},
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/main')
.then(null, console.error.bind(console));
</script>