无法使用 jspm 导入 ng2-dragula



我试图将 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>

相关内容

  • 没有找到相关文章

最新更新