jhipster with vue配置vscode debugger for microsoft edge

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jhipster with vue配置vscode debugger for microsoft edge相关的知识,希望对你有一定的参考价值。

参考技术A

最近在配置vscode debugger,使用vscode调试vue页面。项目是jhipster搭的,前端部分目录结构大致如下:

在配置vscode debugger时遇到了一些问题。

最后我的launch.json部分内容如下:

到这一步,vscode中的断点已经生效了,当进入到相应的页面时,vscode中的断点会由空心圆圈变为红色。如果你的断点仍然提示not bound,说明webRoot配置的不对。
此时虽然说断点已经生效,但实际断点行数和你打断点的行数不符。我一直以为是launch.json中的webRoot和sourceMapPathOverrides配置不对,在这两个配置上折腾好久,最后发现,实际上是webpack的source-map配置问题: webpack 的 sourse-map 中 eval、cheap、inline 和 module 各是什么意思? - 卤蛋实验室 - 博客园 (cnblogs.com)
webpack-dev-server的deltools默认配置为cheap-module-eval-source-map,但是 eval参数可能会导致行映射不准 ,在chrome/edge debugger中没有问题,但是在debugger for microsoft edge中会导致行映射不准的问题。
知道问题之后解决方法也比较简单,修改dev环境的devtools为cheap-module-source-map。参考: Breakpoints in files in chrome not being hit when using webpack sourcemaps - Stack Overflow
到此,问题全部解决。不过vscode-debugger感觉做的还不够完善,比如看network还得到浏览器的console里去看(-. -||)

配置vscode的vue环境变量

安装插件

技术图片

配置vscode的go环境变量

https://blog.csdn.net/weixin_41558061/article/details/100741278
配置 ESLint (需安装 Prettier - Code formatter 插件)
command + shift + p 打开用户设置

或者

文件->首选项->设置:

技术图片

搜索:Associations 打开settings.json

技术图片

技术图片

// vscode默认启用了根据文件类型自动设置tabsize的选项
  "editor.detectIndentation": false,
  // 重新设定tabsize
  "editor.tabSize": 2,
  "files.autoSave": "afterDelay",
  "files.autoSaveDelay": 3000,
  // #每次保存的时候自动格式化
  "editor.formatOnSave": true,
  // #每次保存的时候将代码按eslint格式进行修复
  "eslint.autoFixOnSave": true,
  // 添加 vue 支持
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    {
      "language": "vue",
      "autoFix": true
    }
  ],
  //  #让prettier使用eslint的代码格式进行校验
  "prettier.eslintIntegration": true,
  //  #去掉代码结尾的分号
  "prettier.semi": false,
  //  #使用带引号替代双引号
  "prettier.singleQuote": true,
  //  #让函数(名)和后面的括号之间加个空格
  "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  // #这个按用户自身习惯选择
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  // #让vue中的js按编辑器自带的ts格式进行格式化
  "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      "wrap_attributes": "force-aligned"
      // #vue组件中html代码格式化样式
    }
  }

以上是关于jhipster with vue配置vscode debugger for microsoft edge的主要内容,如果未能解决你的问题,请参考以下文章

安装vscode with springboot

vsCode中编写vue项目时,webpack配置的alias别名无效

配置vscode的vue环境变量

VsCode Vue代码及插件配置

VSCode配置启动Vue项目

vscode新建vue生产vue的模版