1// A launch configuration that compiles the extension and then opens it inside a new window 2// Use IntelliSense to learn about possible attributes. 3// Hover to view descriptions of existing attributes. 4// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5{ 6 "version": "0.2.0", 7 "configurations": [ 8 9 { 10 "name": "Run Extension", 11 "type": "extensionHost", 12 "request": "launch", 13 "runtimeExecutable": "${execPath}", 14 "args": [ 15 "--extensionDevelopmentPath=${workspaceFolder}" 16 ], 17 "outFiles": [ 18 "${workspaceFolder}/out/**/*.js" 19 ], 20 "preLaunchTask": "npm: watch" 21 }, 22 { 23 "name": "Run Extension Tests", 24 "type": "extensionHost", 25 "request": "launch", 26 "runtimeExecutable": "${execPath}", 27 "args": [ 28 "--extensionDevelopmentPath=${workspaceFolder}", 29 "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" 30 ], 31 "outFiles": ["${workspaceFolder}/out/test/**/*.js"], 32 "preLaunchTask": "npm: watch" 33 }, 34 { 35 "name": "Run Extension Single-Tests", 36 "type": "extensionHost", 37 "request": "launch", 38 "runtimeExecutable": "${execPath}", 39 "args": [ 40 "--extensionDevelopmentPath=${workspaceFolder}", 41 "--extensionTestsPath=${workspaceFolder}/out/test/suite/indexsingle" 42 ], 43 "outFiles": ["${workspaceFolder}/out/test/**/*.js"], 44 "preLaunchTask": "npm: watch" 45 } 46 ] 47} 48