Angular Project structure.
Angular Prerequisites.
.editorconfig: This is the configuration file for the VS editor.
.gitignore : Git configuration to ensure autogenerated files are not committed to source control.
Angular.json : This is the configuration file for Angular CLI. The older version of angular used the file angular-cli.json.
Package.json – it is an NPM configuration file that lists the third party packages that your project depends on.
tsconfig.json, tsconfig.app.json & tsconfig.spec.json are typescript configuration file.
tsconfig.json is the typescript compiler configuration file. This file specifies the compiler options required for the typescript to compile (transpile) the project.
In Angular, app.config.server.ts is a configuration file used for server-side rendering (SSR). This file typically contains settings and configurations for how the Angular application should be served and rendered on the server
In Angular, app.config usually refers to a configuration file where you can define various settings for your Angular application.
Here are some common uses for a configuration file in Angular:
API Endpoints: Store URLs for your backend services.
Environment Settings: Different configurations for development, staging, and production environments.
Feature Flags: Enable or disable features based on certain conditions.
Global Constants: Define constants that can be used throughout the application.
Ещё видео!