I'm a newbie angular developer. I've searched many many project structure as a result then I create a module base structure but i'm not sure this approach
My created a project structure as below;
-src
-app
-components
-header
-left-side
-custom-select
... and more component here
**components.module.ts**
-pages
-home
-login
-not-found
... and more page here
index.ts
**pages.module.ts**
-services
APIService.ts
LoadingService.ts
LocalStorageService.ts
PagesService.ts
SweetAlertService.ts
... and more page here
index.ts
**services.module.ts**
-models
-interfaces
-data
... others
app-routing.module.ts
app.component.html
app.component.ts
app.module.ts
-assets
-environments
... others
index.html
more detail and source code here
Is that a good solution for lose complex app.modules?
