Cannot find module '@angular/elements' : Angular 7

Viewed 6153

I am new to angular right now angular 7 using.I want to create angular elements so importing import { createCustomElement } from '@angular/elements' but it giving error Cannot find module '@angular/elements'. Any help will helpful.

2 Answers

You have probably not installed @angular/elements. Please install it.

Run npm install @angular/elements

Another alternative

ng add @angular/elements --project=*your_project_name*
Related