gitextract_8f690w8e/ ├── .editorconfig ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package.json ├── src/ │ ├── api/ │ │ └── index.ts │ ├── app/ │ │ ├── app-routes.spa.ts │ │ ├── app-routes.ts │ │ ├── app-routing.module.ts │ │ ├── app.browser.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.server.module.ts │ │ ├── hello/ │ │ │ ├── hello-routing.module.ts │ │ │ ├── hello.component.html │ │ │ ├── hello.component.scss │ │ │ ├── hello.component.spec.ts │ │ │ ├── hello.component.ts │ │ │ └── hello.module.ts │ │ └── not-found.component.ts │ ├── assets/ │ │ └── .gitkeep │ ├── environments/ │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── server.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.server.json └── tsconfig.spec.json