Angular 요소를 만들 때 Angular9가있는 VSCode (1.44.0-insider)에서 이상한 경고가 발생합니다.
export class AppModule {
constructor(private injector: Injector) {
const helloElement = createCustomElement(HelloComponent, {injector});
customElements.define('my-hello', helloElement);
}
ngDoBootstrap() {}
}
helloElement
typescript의 오류 메시지와 함께 type of를 사용할 수 없습니다.
'NgElementConstructor'유형의 인수는 'CustomElementConstructor'유형의 매개 변수에 지정할 수 없습니다.