Skip to content

Commit 7f0550a

Browse files
authored
Merge branch 'main' into aws-profile-support
2 parents 4c16f7a + 439fc58 commit 7f0550a

File tree

29 files changed

+738
-1212
lines changed

29 files changed

+738
-1212
lines changed

.vscode/launch.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,21 @@
99
"name": "Run Extension",
1010
"type": "extensionHost",
1111
"request": "launch",
12-
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
12+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--extensionDevelopmentPath=${workspaceFolder}",
15+
],
16+
"sourceMaps": true,
1317
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
14-
"preLaunchTask": "${defaultBuildTask}"
15-
}
18+
"preLaunchTask": "compile",
19+
"env": {
20+
"NODE_ENV": "development",
21+
"VSCODE_DEBUG_MODE": "true"
22+
},
23+
"resolveSourceMapLocations": [
24+
"${workspaceFolder}/**",
25+
"!**/node_modules/**"
26+
]
27+
},
1628
]
1729
}

.vscode/tasks.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
{
44
"version": "2.0.0",
55
"tasks": [
6+
{
7+
"label": "compile",
8+
"type": "npm",
9+
"script": "compile",
10+
"dependsOn": ["npm: build:webview"],
11+
"group": {
12+
"kind": "build",
13+
"isDefault": true
14+
},
15+
"presentation": {
16+
"reveal": "silent",
17+
"panel": "shared"
18+
},
19+
"problemMatcher": ["$tsc", "$eslint-stylish"]
20+
},
621
{
722
"label": "watch",
823
"dependsOn": ["npm: build:webview", "npm: watch:tsc", "npm: watch:esbuild"],
@@ -11,7 +26,7 @@
1126
},
1227
"group": {
1328
"kind": "build",
14-
"isDefault": true
29+
"isDefault": false
1530
}
1631
},
1732
{

0 commit comments

Comments
 (0)