0

https://stackoverflow.com/a/38413274/1596547に従ってAngular-CLIプロジェクトにng-bootstrapを追加しようとすると、次を使用できませんprocompile option:

import { Component } from '@angular/core';
import {NGB_ALERT_DIRECTIVES,NGB_PRECOMPILE} from '@ng-bootstrap/ng-bootstrap';

@Component({
  moduleId: module.id,
  selector: 'app-root',
  directives: [ NGB_ALERT_DIRECTIVES ],
  precompile: [ NGB_PRECOMPILE ],
  templateUrl: 'app.component.html',
  styleUrls: ['app.component.css']
})
export class AppComponent {
  title = 'app works!';
  public isCollapsed:boolean = false;
}

上記により、次のエラーが生成されます。

Error: Typescript found the following errors:
  /home/bass/testdrive/bootstrap-angular/tmp/broccoli_type_script_compiler-input_base_path-tcvIrPf2.tmp/0/src/app/app.component.ts (9, 3): Argument of type '{ moduleId: string; selector: string; directives: (typeof NgbAlert | typeof NgbDismissibleAlert)[...' is not assignable to parameter of type '{ selector?: string; inputs?: string[]; outputs?: string[]; properties?: string[]; events?: strin...'.
  Object literal may only specify known properties, and 'precompile' does not exist in type '{ selector?: string; inputs?: string[]; outputs?: string[]; properties?: string[]; events?: strin...'.
4

1 に答える 1

1

これはバージョンの問題のようです。プリコンパイルはrc4で追加されました

このコミット経由: github.com/angular/angular/commit/6c5b653

rc4 変更ログ: https://github.com/angular/angular/blob/master/CHANGELOG.md (機能の下を見てください)

于 2016-08-02T22:14:15.660 に答える