Visual Studio 2015 Enterprise with ReSharper 10 Ultimate — Cannot be properly resolved

后端 未结 6 1048
太阳男子
太阳男子 2020-12-06 16:13

I have Visual Studio 2015 Enterprise, version 14.0.24720.00 Update 1 as well as ReSharper 10 Ultimate, version 10.0.2 installed. I have a

6条回答
  •  孤城傲影
    2020-12-06 16:23

    As a workaround, if you are using angular2 from your node_modules folder, then you can reference it directly instead of relying on the new node module resolution. For example you can do:

    import {Directive} from '../../node_modules/angular2/core';
    

提交回复
热议问题