dist | The final build of Angular |
node_modules | The package.json file in the app root defines what libraries will be installed into node_modules/ when you run npm install . |
src | Your app lives in the src folder. All Angular components, templates, styles, images, and anything else your app needs go here. Any files outside of this folder are meant to support building your app. |
app | Main app folder |
config | Contains the main config for the theme |
content | The sample pages. |
core | The core of theme layout |
fake-api | Sample dummy data for backend API simulation. |
app.component.html | Main app template. |
app.component.ts | Main app typescript. |
app.module.ts | Main app module. The place where to import and declare required components. |
app-routing.module.ts | Base routing for the app. |
assets | This folder will contain all the assets needed for the Angular app that are not related to Angular code. |
environments | This folder contains one file for each of destination environments, each exporting simple configuration variables to use in application |
environment.prod.ts | Production environment config |
environment.ts | Development environment config |
index.html | The index.html lives at the root of front-end structure. The index.html file will primarily handle loading in all the libraries and Angular elements. |
main.ts | The main entry point for your app. |
polyfills.ts | Angular is built on the latest standards of the web platform. A particular browser may require at least one polyfill to run any Angular application. You may need additional polyfills for specific features. IE9, IE10 and IE11 requires to enable polyfills. Read more angular.io/guide/browser-support |
styles.scss | Global styles go here which styles that affect all of your app need to be in a central place. |
test.ts | |
tsconfig.app.json | |
tsconfig.spec.json | |
typings.d.ts | TypeScript adds static typing to JavaScript. |
.angular-cli.json | Angular CLI loads its configuration from .angular-cli.json |
angular.json | Configuration for Angular CLI. In this file you can set several defaults and also configure what files are included when your project is built. Check out the official documentation if you want to know more. |
package.json | A package.json file contains meta data about app or module. Most importantly, it includes the list of dependencies to install from npm when running npm install. |
tsconfig.json | tsconfig.json file in a directory indicates that the directory is the root of a TypeScript project. The tsconfig.json file specifies the root files and the compiler options required to compile the project. |
tslint.json | Linting configuration for TSLint together with Codelyzer, used when running ng lint . Linting helps keep your code style consistent. |