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} 36