目录
一、配置
1、打开默认配置文件
ctrl + shift + p 输入 open default settings
2、导出配置文件
ctrl + shift + p 输入 export
3、导入配置文件
ctrl + shift + p 输入 import
二、插件
Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code
open in browser
Auto Rename Tag
Live Server
Path Intellisense
Markdown Preview
Prettier - Code formatter
code runner
vetur[vue2使用]
volar[vue3使用]
VueHelper
Turbo Console Log
GitLens
Auto Import
Todo Tree
Regex Previewer
px to rem
SVG View
Settings Sync
三、插件批量迁移
进入C:\Users\用户名\.vscode
将当前目录下的extensions文件夹复制到目标主机上的相同路径即可
四、配置node语法提示
方式一
npm install --save-dev @types/node
方式二
1.全局安装 typings
npm i -g typings 或者 cnpm i typings -g
输入 typings --version 出现版本号 说明安装成功
2.在项目目录下终端输入
typings init
这时当前目录下会出现一个typings.json的文件,这个文件就是typing的配置文件
3.在该目录下输入
typings install dt~node --global --save