| 1234567891011121314151617181920212223242526 |
- // A launch configuration that compiles the extension and then opens it inside a new window
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch Extension",
- "type": "extensionHost",
- "request": "launch",
- "args": ["--extensionDevelopmentPath=${workspaceFolder}"],
- "outFiles": ["${workspaceFolder}/out/**/*.js"],
- "preLaunchTask": "${defaultBuildTask}"
- },
- {
- "name": "Launch Extension Tests",
- "type": "extensionHost",
- "request": "launch",
- "runtimeExecutable": "${execPath}",
- "args": [
- "--extensionDevelopmentPath=${workspaceFolder}",
- "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
- ],
- "outFiles": ["${workspaceFolder}/out/test/**/*.js"]
- }
- ]
- }
|