I am trying to add angular2-logger to my Angular. https://www.npmjs.com/package/angular2-logger told me how to config.It said:Add the angular2-logger library to your app. If you are following the Angular 2's Quickstart Guide it should be something like this: In systemjs.config.js:
// map tells the System loader where to look for things
var map = {
'app': 'app', // 'dist',
'@angular': 'node_modules/@angular',
'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
'rxjs': 'node_modules/rxjs',
'angular2-logger': 'node_modules/angular2-logger' // ADD THIS
};
//packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { main: 'main.ts', defaultExtension: 'ts' },
'rxjs': { defaultExtension: 'js' },
'angular2-in-memory-web-api': { defaultExtension: 'js' },
'angular2-logger': { defaultExtension: 'js' }, // AND THIS
};
However,When I create QuickStart from official web https://angular.io/generated/zips/cli-quickstart/cli-quickstart.zip ,I can't see the file:systemjs.config
Who can tell me what should I do next?