vscode 利用ts文件来开启智能提示

实现智能提示功能(两种方式)

1. 利用npm安装type模块

npm search @types/lodash
npm install @types/lodash --save-dev

2. 利用typings工具(Deprecated) -------已经弃用

  1. 工具
    • npm
    • typings
  2. 安装
    • 安装nodejs 。
    • 在npm包管理中安装typings。
      npm i typings -g
      
  3. 利用typings安装
    typings search jquery
    npm install jquery
    typings install jquery
    
  4. 启用提示
    就可以在当前文件夹下 启用智能提示了
    import $ form 'jquery'
    

你可能感兴趣的:(学习)