Skip to content

Instantly share code, notes, and snippets.

@lsg-vtaran
Created May 26, 2023 11:08
Show Gist options
  • Save lsg-vtaran/2c1484491b997a9778af450a4833f805 to your computer and use it in GitHub Desktop.
Save lsg-vtaran/2c1484491b997a9778af450a4833f805 to your computer and use it in GitHub Desktop.
my-workspace/
├── ... #workspace-wide configuration files
├── src
│   ├── app
│   │   ├── app.module.ts #defines the root module, that tells Angular how to assemble the application
│   │   ├── app.component.ts #defines the logic for the application's root component
│   │   ├── app.component.html #defines the HTML template associated with the root component
│   │   ├── app.component.css #defines the base CSS stylesheet for the root component
│   │   ├── app.component.spec.ts #defines a unit test for the root component
│   │   └── app-routing.module.ts #provides routing capability for the application
│   ├── lib
│   │   └── src #library-specific configuration files
│   ├── index.html #main HTML page, where the component will be rendered in
│   └── ... #application-specific configuration files
├── angular.json #provides workspace-wide and project-specific configuration defaults
└── tsconfig.json #provides the base TypeScript configuration for projects in the workspace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment