Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

全局的typescript版本与项目的typescript版本冲突导致,解决方案如下:

1、查看冲突的版本 npm ls typescript

Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

2、以上说明全局使用的是v3.1.6,而项目需要的是v2.3.4,安装此版本 cnpm install typescript@2.3.4 -g

Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

安装成功后,将项目package.json中的typescript版本改成v2.3.4

Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

3、重新初始化安装 cnpm install

 Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

4、重新启动项目查看是否解决 npm start

Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

Angular项目启动的时候报错:ERROR in AppModule is not an NgModule

上一篇:Microsoft Cloud App Security 微软的云应用安全


下一篇:Termux + Git + 码云,安卓端实现查看修改云端代码