aboutsummaryrefslogtreecommitdiff
path: root/codeless/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to 'codeless/.vscode/launch.json')
-rw-r--r--codeless/.vscode/launch.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/codeless/.vscode/launch.json b/codeless/.vscode/launch.json
new file mode 100644
index 000000000..64f2c3693
--- /dev/null
+++ b/codeless/.vscode/launch.json
@@ -0,0 +1,19 @@
1{
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 "version": "0.2.0",
6 "configurations": [
7 {
8 "name": "Launch Extension",
9 "type": "extensionHost",
10 "request": "launch",
11 "runtimeExecutable": "${execPath}",
12 "args": ["--extensionDevelopmentPath=${workspaceRoot}"],
13 "stopOnEntry": false,
14 "sourceMaps": true,
15 "outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
16 "preLaunchTask": "npm"
17 },
18 ]
19}