whoami
whoami

Reputation: 113

How to slove (TS) Cannot find module '@angular/core' in Visual Studio2019

I create Asp.Net Core Project with Angular template. each import row with '@angular/...'; has an error

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

Upvotes: 1

Views: 633

Answers (1)

brian
brian

Reputation: 692

Have you run "npm install"? If not, you need to run "npm install" from the root folder.

Upvotes: 1

Related Questions