Angular 2 AoT汇总时刻区域设置

时间:2017-04-28 12:52:40

标签: angular momentjs angular2-aot rollupjs

有人知道如何在AoT和汇总中应用moment.js语言环境吗? 在systemjs.config.js中定义的moment-with-locales.js不适用于:

 //in systemjs.config.js.

'moment': 'npm:moment/min/moment-with-locales.js',

//in component:
import moment from 'moment';

this.moment.locale('de');
let formattedDate = this.moment(value).format('L');

并在'en'中给出默认结果。

在rollup-config.js中:

plugins: [
        nodeResolve({jsnext: true, module: true}),
        commonjs({
            include: [
                'node_modules/rxjs/**',
                'node_modules/moment/min/**',
            ]
        }),
        uglify()
    ]

0 个答案:

没有答案