Skip to content

Commit 68c6ceb

Browse files
Add Watch launch config
1 parent 01690e3 commit 68c6ceb

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,5 @@ fsacpath.txt
8282
/out/
8383

8484
build/bin
85-
build/obj
85+
build/obj
86+
release/fsharp.js.LICENSE.txt

.vscode/launch.json

+19
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,25 @@
3737
"!**/node_modules/**"
3838
],
3939
},
40+
{
41+
"preLaunchTask": "Watch",
42+
"name": "Build (watch) and Launch Extension",
43+
"type": "extensionHost",
44+
"runtimeExecutable": "${execPath}",
45+
"args": [
46+
"--extensionDevelopmentPath=${workspaceRoot}/release"
47+
],
48+
"stopOnEntry": false,
49+
"request": "launch",
50+
"sourceMaps": true,
51+
"pauseForSourceMap": true,
52+
"sourceMapRenames": true,
53+
"trace": true,
54+
"outFiles": [
55+
"${workspaceFolder}/release/*.js",
56+
"!**/node_modules/**"
57+
],
58+
},
4059
{
4160
"name": "Launch Only",
4261
"type": "extensionHost",

0 commit comments

Comments
 (0)