一、在使用VS Code添加angularjs智能提示出现异常
命令:
typings install dt~angular --global --save异常如下:
typings ERR! message Attempted to compile "angular" as a global module,but it looks like an external module. You'll need to remove the global option to continue.
但去掉--global可以安装成功
typings install dt~angular --save
还是会出异常没法使用。
解决方案:
对于dt~angular使用npm install @types/angular 命令安装
生成结果:
测试如下:
更多: