https://github.com/Microsoft/TypeScript
Raw File
Tip revision: dcad07ffd29854e2b93a86da0ba197f6eec21698 authored by Daniel Rosenwasser on 25 January 2023, 20:14:47 UTC
Update LKG
Tip revision: dcad07f
launch.template.json
/* 

  Copy this file into '.vscode/launch.json' or merge its
  contents into your existing configurations.

  If you want to remove the errors in comments for all JSON
  files, add this to your settings in ~/.vscode/User/settings.json

  "files.associations": {
      "*.json": "jsonc"
  },

*/

{
  // 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": "node",
      "request": "launch",
      "name": "Mocha Tests (currently opened test)",
      "runtimeArgs": ["--nolazy"],
      "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
      "args": [
        "-u",
        "bdd",
        "--no-timeouts",
        "--colors",
        "built/local/run.js",
        "-f",
        // You can change this to be the name of a specific test file (without the file extension)
        // to consistently launch the same test
        "${fileBasenameNoExtension}",
        "--skip-percent",
        "0"
      ],
      "env": {
        "NODE_ENV": "testing"
      },
      "sourceMaps": true,
      "smartStep": true,
      "preLaunchTask": "npm: build:tests",
      "console": "integratedTerminal",
      "customDescriptionGenerator": "'__tsDebuggerDisplay' in this ? this.__tsDebuggerDisplay(defaultValue) : defaultValue"
    },
    {
      // See: https://github.com/microsoft/TypeScript/wiki/Debugging-Language-Service-in-VS-Code
      "type": "node",
      "request": "attach",
      "name": "Attach to VS Code TS Server via Port",
      "processId": "${command:PickProcess}",
      "customDescriptionGenerator": "'__tsDebuggerDisplay' in this ? this.__tsDebuggerDisplay(defaultValue) : defaultValue"
    }
  ]
}
back to top