Visual Studio Codeで、local の JavaScript を Debug する

この記事で解決すること

Visual Studio Code で、ちょっとした JavaScript を Debug することが出来るようになります。

この記事の対象読者

  • Visual Studio Code で、local JavaScript を Debug したい方

目次

設定

launch.json で、"webRoot" を “file" に変更して、Deubg を開始します。

    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:8080",
            "file": "${workspaceFolder}/index.html" // webRoot を file に変更
        }

これまで何度か同じ問題を解消することになったため、忘れないようにする覚書です。

プログラム開発

Posted by iwadjp