もちろん大丈夫です。このように動作するように設計されています。 Your initial app has only a single module, the root module. As your app grows, you'll consider subdividing it into multiple "feature" modules, some of which can be loaded later ("lazy loaded") if and when the user chooses to visit those features.
Modules are a great way to organize an application and extend
it with capabilities from external libraries.
Many Angular libraries are modules (such as FormsModule, HttpModule, and
RouterModule). Many third-party libraries are available as NgModules (such
as Material Design, Ionic, AngularFire2).
NgModules consolidate components, directives, and pipes into cohesive blocks
of functionality, each focused on a feature area, application business
domain, workflow, or common collection of utilities.
https://angular.io/guide/ngmodule
https://angular.io/guide/bootstrapping
Angularにネストされたモジュールはなく、他のモジュールをインポートするのはモジュールのみです。 –
フォーラムが設計上スレッドと投稿で構成されている場合、フォーラムモジュールはどのように「肥大化」しないのですか?これらの項目が一意であり、他の場所で再利用されることになっていない場合、おそらく独自のモジュールは必要ありません。あるいはそうするかもしれない。 – estus