I am new to angular 2 and following the angular 2 quick start guide. I am trying to understand the directory structure of angular app . I am using npm to build the app . I came across the import statements in angular 2
e.g.
import {NgModule} from '@angular/core';
I found it sytemjs.config.js file that mapped like
'@angular/core': 'npm:@angular/core/bundles/core.umd.js'
where
'npm:': 'node_modules/'
npm: is alias for node_module folder.
But when I am using my custom component(made by user) and imports this like
import {AppComponent} from './app.component';
what the dot(.) represent here ,is it representing the app folder mapped as
app: 'app',