Files and Folders Flashcards
Support files
files outside of the src folder
The root component of the application
app/app.component/
The root module that tells angular how to assemble the application
app/app.module.ts
Folder where images and other wholesale files go
assets/*
Folder with destination environment files.
environments/
website icon
favicon.ico
main entry point of the application.
main.ts
File for normalizing differences between browsers.
polyfills.ts
File for global styling
styles.css
Main entry point for tests
tests.ts
TypeScript compiler configuration
tsconfig.{item-being-configured}.json
TypeScript application configuration.
tsconfig.app.json
TypeScript test configuration
tsconfig.spec.json
Folder for end to end testing
e2e/
Configuration for angular CLI
.angular-cli.json
Configuration file for application editors
.editorconfig
GIT configuration file that makes sure autogenerated files are not committed to source control.
.gitignore
Unit test configuration for Karma test runner
karma.conf.js
npm configuration for third party packages for the application
package.json
End to end test configuration for protractor.
protractor.config.js
Basic project documentation
README.md
TypeScript configuration for IDE to pick up and give helpful tooling.
tsconfig.json
Lint (tool for maintaining code) configuration file
tslint.json