LoginSignup
6
2

More than 3 years have passed since last update.

【VSCode】Vue.js で Unbound breakpoint

Last updated at Posted at 2020-10-21

困りごと

VSCodeでのVue.js(TypeScript)の開発時にブレークポイントを設定しようしたら、以下のようになってブレークポイントが貼れない、止まらない。

private.png

launch.json
{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "vuejs: chrome",
      "url": "http://localhost:8080",
      "webRoot": "${workspaceFolder}/src",
      "breakOnLoad": true,
      "sourceMapPathOverrides": {
        "webpack:///./src/*": "${webRoot}/*"
      }
    },
    {
      "type": "firefox",
      "request": "launch",
      "name": "vuejs: firefox",
      "url": "http://localhost:8080",
      "webRoot": "${workspaceFolder}/src",
      "pathMappings": [{ "url": "webpack:///src/", "path": "${webRoot}/" }]
    }
  ]
}

解決

VSCodeの設定で以下の設定をfalseにしたらブレークポイントが設定できました。

Debug › Java Script Use Preview.png

参考

6
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2