web-dev-qa-db-ja.com

ng build --prodクラスXのモジュールを判別できません! ThreadListTabsComponentをNgModuleに追加して修正します

Angular 5アプリをビルドしようとしていますが、エラーが発生します:

/home/brightwater/Differ/src/app/thread-lists/thread-lists.component.tsのクラスThreadListTabsComponentのモジュールを特定できません! ThreadListTabsComponentをNgModuleに追加して修正します。

モジュールに問題のあるコンポーネントをインポートしているため、これは混乱を招きます。

thread-lists.module.ts

import { OtherModules } from './modules-everywhere';
import { NgModule }      from '@angular/core'

import { SomeOtherComponents }  from './other-components.component';
import { ThreadListTabsComponent } from './thread-list-tabs.component';

@NgModule({
  imports: 
  [ 
    OtherModules
  ],
  declarations: [
    OtherComponents,
    ThreadListTabsComponent
  ],
  exports: [
    OtherComponents,
    ThreadListTabsComponent
  ],
  providers: [ ThreadListsService ]
})


export class ThreadListsModule { }

ここにコンポーネントがあります:

thread-list-tabs.component.ts

import { Component } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Router }   from '@angular/router';
import { ThreadListsService }   from './thread-lists.service';

@Component({
  moduleId: module.id,
  selector: 'thread-list-tabs',
  templateUrl: 'thread-list-tabs.component.html',
  styleUrls: ['thread-list-tabs.component.css']
})


export class ThreadListTabsComponent {

  // Stuff this component does

}

app.module.ts

import { NgModule } from '@angular/core'
import { ThreadListsModule } from './thread-lists/thread-lists.module'
import { OtherModules } from './other.modules'
import { AppComponent } from './app.component'

@NgModule({
  imports: [    
    OtherModules, 
    ThreadListsModule
  ],
  declarations: [ 
    AppComponent
  ],
  providers: [ SomeService ],
  bootstrap: [ AppComponent ]
})

export class AppModule { }

行方不明のものはありますか?

7
J. Adam Connor

これはファイル名の大文字小文字の問題のようです。 angular git repo(https://github.com/angular/angular-cli/issues/10732)

11