Skip to content
Md. Shohel Rana edited this page Apr 23, 2018 · 2 revisions

Basic Architecture of Angular

src

  • app
    • app.component.css
    • app.component.html
    • app.component.spec.ts
    • app.component.ts
    • app.module.ts
  • assets
    • .gitkeep
  • environments
    • environment.prod.ts
    • environment.ts
  • favicon.ico
  • index.html
  • main.ts
  • polyfills.ts
  • styles.css
  • test.ts
  • tsconfig.app.json
  • tsconfig.spec.json

src is the application folder architecture others are configuration files for build and production. We will work to the all files of src folder and will be known in step by step.