Source files for the root-level application project.
- File Structure Overview :
- File Tree (Entry point main.ts | index.html) :
Configuration for code editors. See EditorConfig.
Specifies intentionally untracked files that Git should ignore.
Introductory documentation for the root application.
CLI configuration defaults for all projects in the workspace, including configuration options for build, serve, and test tools that the CLI uses, such as Karma, and Protractor. For details, see Angular Workspace Configuration.
Configures npm package dependencies that are available to all projects in the workspace. See npm documentation for the specific format and contents of this file.
Provides version information for all packages installed into node_modules by the npm client. See npm documentation for details. If you use the yarn client, this file will be yarn.lock instead.
Provides npm packages to the entire workspace. Workspace-wide node_modules dependencies are visible to all projects.
The base TypeScript configuration for projects in the workspace. All other configuration files inherit from this base file. For more information, see the Configuration inheritance with extends section of the TypeScript documentation.
TypeScript configuration for the application tests. See TypeScript Configuration.
Application-specific TypeScript configuration, including TypeScript and Angular template compiler options. See TypeScript Configuration and Angular Compiler Options.

