Cannot find module 'angular2/angular2'

后端 未结 11 887
有刺的猬
有刺的猬 2020-11-30 06:43

I am developing an node app with angular2 and gulp. I have written a component file login.ts as follows:

import {Component, View} from \'angular2/angular2\';         


        
11条回答
  •  温柔的废话
    2020-11-30 07:15

    import from ''angular2/angular2' was in previous version which no longer supported now .So Now we have to import the same from 'angular2/core'.For detail reference use (https://angular.io/guide/quickstart)

提交回复
热议问题