得到:错误TS2307:找不到模块'@ angular / core'。在向项目添加新模块后

时间:2018-08-05 10:18:08

标签: angular angular-material

我正在尝试运行Angular Material项目,并且已经完成了本教程中的所有步骤(直到设置样式)-https://medium.com/@ismapro/first-steps-with-angular-cli-and-angular-material-5a90406e9a4

简而言之,我一步一步地运行了这些命令:

npm install @angular/cli -g
ng -v
ng new angular-material-begin --style=scss
cd angular-material-begin
npm install --save @angular/material @angular/cdk
npm install --save @angular/animations
ng serve

有一次,我将两个Angular Material模块添加到我的 app.module.ts 文件中(下面是整个代码):

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

import { AppComponent } from './app.component';

import {MatButtonModule, MatCheckboxModule} from '@angular/material';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    MatButtonModule, MatCheckboxModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

尽管如此,我仍然收到很多错误,例如: 错误TS2307:添加这两个模块后,找不到模块'@ angular / core'。

请注意,我已经尝试安装Angular CDK,运行 npm install 等等。

似乎以前的安装已经捕获了某种缓存,无法通过。

感谢任何帮助或支持。

编辑,当我单击这些错误中的链接时看到的内容(每个文件仅表明它找不到此@ angular / core内容: enter image description here

0 个答案:

没有答案