{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Launch spreadsheet with debugger", "trace": true, "sourceMaps": true, "pauseForSourceMap": false, "skipFiles": ["**/node_modules/**", "!${workspaceFolder}/**"], "webRoot": "${workspaceFolder}/src/client", // Need random open port for logging into spreadsheets: // https://github.com/microsoft/vscode-js-debug/issues/918 "port": 12345, } ] }