2016-12-30 16 views
0

Plunkerが提供するデフォルトテンプレートを使ってangular2アプリを作成すると、Plunkerのangular2アプリにangular2-momentをインポートしようとしていました。Plunkerはangular2-momentパッケージをangular2アプリに追加します

import * as moment from 'moment'; 

これは私のplunkerのconfig.jsのは

System.config({ 
    //use typescript for compilation 
    transpiler: 'typescript', 
    //typescript compiler options 
    typescriptOptions: { 
    emitDecoratorMetadata: true 
    }, 
    paths: { 
    'npm:': 'https://npmcdn.com/' 
    }, 
    //map tells the System loader where to look for things 
    map: {  
    'app': './src', 
    ....other angular2 packages work fine... 
    'rxjs': 'npm:rxjs', 
    'moment': 'npm:[email protected]', 
    'angular2-moment': 'npm:[email protected]', 
    'typescript': 'npm:[email protected]/lib/typescript.js' 
    }, 
    //packages defines our app package 
    packages: { 
    'app': { 
     main: './main.ts', 
     defaultExtension: 'ts' 
    }, 
    'rxjs': { 
     defaultExtension: 'js' 
    }, 
    'angular2-moment': { 
     defaultExtension: 'js' 
    } 
    } 
}); 

どのように見えるか、私はここで何をしないのですか?以下のような

答えて

関連する問題