Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejavascript
titlelaunch.json file in VS Code
        {
            "name": "Launch",
            "type": "node",
            "request": "launch",
            "programname": "${workspaceRoot}/startLaunch Profound.js",
            "stopOnEntryprogram": false,
            "args": [],
            "cwd": "${workspaceRoot}workspaceFolder}\\profoundjs\\start.js",
            "runtimeArgsargs": [
                "--no-nolazyworker"
            ],
 
          "env": {
                "NODE_ENV": "development"
            },
            "console": "internalConsole",
            "sourceMaps": false
     

 }

This specifies that when you start debugging, it will launch Profound.js inside of your VS Code instance.

...