Skip to content
Snippets Groups Projects
Select Git revision
  • c82a971c8c1db94a419e438e0a3437cf979c30df
  • master default protected
  • docs-improve_user_path_description
  • fix-pipeline
  • ci-change_exercises_image_registry
  • feat-merge_recorder_in_extension
  • feat-default_folder
  • feat-change_user
  • develop protected
  • refactor-mission
  • feat-exercise_automatic_save
  • docs-improve_documentation
  • feat-create_little_container_for_developer
  • feat-local-dev
  • 0.1.12
  • 0.1.11
  • 0.1.10
  • 0.1.5
18 results

launch.json

Blame
  • launch.json 1.83 KiB
    // A launch configuration that compiles the extension and then opens it inside a new window
    // 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": [
        {
          "name": "Run Extension",
          "type": "extensionHost",
          "request": "launch",
          "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
          "outFiles": ["${workspaceFolder}/dist/**/*.js"],
          "preLaunchTask": "${defaultBuildTask}"
        },
        {
          "name": "Run Extension in test mode",
          "type": "extensionHost",
          "request": "launch",
          "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
          "outFiles": ["${workspaceFolder}/dist/**/*.js"],
          "env": {
            "DL_MOUNT_EXTENSION": "true",
            // TODO: SETTING: replace with your own extension path
            "EXTENSION_PATH": "${workspaceFolder}/deadlock-coding-0.1.12.vsix"
          },
          "preLaunchTask": "${defaultBuildTask}"
        },
        {
          "name": "Rebuild then run Extension in test mode",
          "type": "extensionHost",
          "request": "launch",
          "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
          "outFiles": ["${workspaceFolder}/dist/**/*.js"],
          "env": {
            "DL_MOUNT_EXTENSION": "true",
            // TODO: SETTING: replace with your own extension path
            "EXTENSION_PATH": "${workspaceFolder}/deadlock-coding-0.1.12.vsix"
          },
          "preLaunchTask": "tasks: build and watch"
        },
        {
          "name": "Extension Tests",
          "type": "extensionHost",
          "request": "launch",
          "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
          "outFiles": ["${workspaceFolder}/out/**/*.js", "${workspaceFolder}/dist/**/*.js"],
          "preLaunchTask": "tasks: watch-tests"
        }
      ]
    }