

Tsconfig.json: The configuration file for TypeScript. README.md: A Markdown file that contains a description of the project. Package.json: It contains basic information of the project (name, description and dependencies etc.) tsconfig.*.json: The configuration files for TypeScript.Īngular.json: It contains the configurations for CLI.test.ts: This is a configuration file for Karma.styles.css: The global stylesheet file for the project.polyfills.ts: Polyfills needed by Angular.main.ts: The main starting file from where the AppModule is bootstrapped.: The configuration file for Karma (a testing tool).browserslist: Needed by autoprefixer for CSS support./environments/: It contains environment (production and development) specific configuration files./assets/: It contains static assets like images, icons and styles etc./app/: It contains modules and components.
Install webpack cli npm code#
src/: It contains the source code of the application.


Version (v): Outputs Angular CLI version. Update: Updates your application and its dependencies. Serve (s): Builds and serves your app, rebuilding on file changes. Run: Runs a custom target defined in your project. New (n): Creates a new workspace and an initial Angular app. Lint (l): Runs linting tools on Angular app code in a given project folder. Help: Lists available commands and their short descriptions. Generate (g): Generates and/or modifies files based on a schematic. Must be executed from within a workspace directory.Ĭonfig: Retrieves or sets Angular configuration values.ĭoc (d): Opens the official Angular documentation (angular.io) in a browser, and searches for a given keyword.Į2e (e): Builds and serves an Angular app, then runs end-to-end tests using Protractor. Add: Adds support for an external library to your project.īuild (b): Compiles an Angular app into an output directory named dist/ at the given output path.
