Skip to content

Commit 304a412

Browse files
committed
Update launch.json and tasks.json
1 parent 3b38533 commit 304a412

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.vscode/launch.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"type": "extensionHost",
88
"request": "launch",
99
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
10+
"args": [
11+
"--extensionDevelopmentPath=${workspaceRoot}"
12+
],
1113
"stopOnEntry": false,
1214
"sourceMaps": true,
13-
"preLaunchTask": "npm",
15+
"preLaunchTask": "npm: watch",
1416
"outFiles": [
1517
"${workspaceFolder}/dist/**/*.js"
1618
]
@@ -20,12 +22,15 @@
2022
"type": "extensionHost",
2123
"request": "launch",
2224
"runtimeExecutable": "${execPath}",
23-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test/suite/index" ],
25+
"args": [
26+
"--extensionDevelopmentPath=${workspaceRoot}",
27+
"--extensionTestsPath=${workspaceRoot}/out/test/suite/index"
28+
],
2429
"stopOnEntry": false,
2530
"sourceMaps": true,
2631
"outFiles": [
2732
"${workspaceRoot}/out/test/**/*.js"
2833
]
2934
}
3035
]
31-
}
36+
}

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"type": "npm",
88
"script": "watch",
99
"problemMatcher": [
10-
"$ts-webpack-watch",
11-
"$tslint-webpack-watch"
10+
"$tsc",
11+
"$tsc-watch"
1212
],
1313
"isBackground": true,
1414
"presentation": {

0 commit comments

Comments
 (0)