Angular2

时间:2017-03-23 17:55:19

标签: node.js angular typescript web brackets

很抱歉,但我无法理解为什么我的括号告诉我在我的angular2项目中找不到这些模块。这是我的 app.module.ts 文件:

import { NgModule } from '@angular/core'; 
import { BrowserModule } from '@angular/platform-browser'; 
import { AppComponent } from './app.component'; 

@NgModule({ 
	imports: [ BrowserModule ], 
	declarations: [ AppComponent ], 
	bootstrap: [ AppComponent ] 
}) 


export class AppModule { }

括号说:

https://i.stack.imgur.com/hBY8P.png

但最有趣的是,我在一周前开始这个项目并且一切都很完美,但今天的括号告诉我找不到几个模块..

所以我决定重新开始我的项目,我尝试按照这个页面(NgModules Documentation),但在第二步括号告诉我找不到模块......

有人可以帮我吗?谁知道为什么?

1 个答案:

答案 0 :(得分:0)

删除node_module文件夹,然后运行

npm install

再次安装所有软件包。