Sha256: 12016edaf36e71edbb137810d97c143067e0138e32097b5557d5c99f4487072b

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

// A launch configuration that compiles the extension and then opens it inside a new window
{
    "version": "0.1.0",
    "configurations": [
        {
            "name": "Extension",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
            "stopOnEntry": false,
            "sourceMaps": true,
            "outFiles": [ "${workspaceRoot}/out/**/*.js" ],
            "preLaunchTask": "npm: watch"
        },
        {
            "name": "Language Server E2E Test",
            "type": "extensionHost",
            "request": "launch",
            "runtimeExecutable": "${execPath}",
            "args": [
                "--extensionDevelopmentPath=${workspaceRoot}",
                "--extensionTestsPath=${workspaceRoot}/out/test",
                "${workspaceRoot}/testFixture"
            ],
            "stopOnEntry": false,
            "sourceMaps": true,
            "outFiles": [ "${workspaceRoot}/out/test/**/*.js" ]
        }
    ]
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
yoda-language-server-0.7.2 client/vscode/.vscode/launch.json
yoda-language-server-0.7.1 client/vscode/.vscode/launch.json
yoda-language-server-0.7.0 client/vscode/.vscode/launch.json
yoda-language-server-0.6.2 client/vscode/.vscode/launch.json
yoda-language-server-0.6.1 client/vscode/.vscode/launch.json
yoda-language-server-0.6.0 client/vscode/.vscode/launch.json
yoda-language-server-0.5.0 client/vscode/.vscode/launch.json