
vsCode
林初笔墨
这个作者很懒,什么都没留下…
展开
-
VSCode 热跟新
VSCode热更新原创 2022-06-23 14:45:30 · 1629 阅读 · 0 评论 -
vue中配置别名
标题vue中配置别名 在根目录创建名为 jsconfig.json 的文件 { "compilerOptions": { "baseUrl": "./", "paths": { "@/*":["src/*"] } }, "exclude": ["node_modules","dist"] }原创 2022-03-30 12:33:45 · 1508 阅读 · 0 评论 -
vsCode 中给vue项目配置 eslint
{ /* 关闭编辑器自带保存格式化功能,此功能会用Vetur进行格式化。*/ "editor.formatOnSave": false, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.alwaysShowStatus": true, "eslint.options": { "extensions": [ ".js", ".vue" ] }.原创 2021-05-15 10:39:46 · 593 阅读 · 0 评论