Skip to content

Commit b0019a9

Browse files
authored
Merge pull request #9 from halcyon-tech/feature/sql_job_stuff
Feature/sql job stuff
2 parents 75f37df + 908eb44 commit b0019a9

31 files changed

+4452
-131
lines changed

.vscode/launch.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,20 @@
66
"version": "0.2.0",
77
"configurations": [
88
{
9-
"name": "Launch Tests",
10-
"program": "${workspaceFolder}/tests/index.js",
9+
"name": "Run Extension",
10+
"type": "extensionHost",
1111
"request": "launch",
12-
"skipFiles": [
13-
"<node_internals>/**"
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
1414
],
15-
"type": "pwa-node"
15+
"outFiles": [
16+
"${workspaceFolder}/dist/**/*.js"
17+
],
18+
"preLaunchTask": "npm: webpack",
19+
"sourceMaps": true
1620
},
1721
{
18-
"name": "Run Extension",
22+
"name": "Launch Tests",
1923
"type": "extensionHost",
2024
"request": "launch",
2125
"args": [
@@ -25,8 +29,10 @@
2529
"${workspaceFolder}/dist/**/*.js"
2630
],
2731
"preLaunchTask": "npm: webpack",
28-
"sourceMaps": true
32+
"sourceMaps": true,
33+
"env": {
34+
"testing": "true"
35+
}
2936
},
30-
3137
]
3238
}

0 commit comments

Comments
 (0)