使用Rollup for Angular 2的AoT编译器并导入Moment.js

前端之家收集整理的这篇文章主要介绍了使用Rollup for Angular 2的AoT编译器并导入Moment.js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图跟随 official AoT guide的角度2,我在我的应用程序中使用Moment.js. Moment.js在我的packages.json文件中,我使用的是2.15.0版本.到目前为止,我一直在输入它:
import * as moment from 'moment';

但是当我到达我必须运行汇总的部分时,我最终会出现以下错误

Cannot call a namespace (‘moment’)

这似乎与我在this导入时刻的方式有关.那么我该怎么做呢?
我似乎无法以任何其他方式进口.如果我使用

import moment from 'moment'

我得到编译错误

External module ”moment” has no default export

我终于设法摆脱了这两个错误.确实要避免:

Cannot call a namespace (‘moment’)

你需要使用:

进口时刻从’时刻’

然后避免

“moment” has no default export

你必须添加到你的tsconfig.json(compilerOptions)中:

“allowSyntheticDefaultImports”:true

编辑17/11/2016

我也不得不将以下内容添加到我的rollup-config.js文件中:

plugins: [
  nodeResolve({jsnext: true,module: true}),commonjs({
    include: [
        'node_modules/rxjs/**','node_modules/moment/**'
      ]
    }
  }),uglify()
]
原文链接:https://www.f2er.com/angularjs/143219.html

猜你在找的Angularjs相关文章