File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Generative AI & LLMs/LLM Copilot Ext for VS Code IDE/.vs-code Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the extensions.json format
4+ "recommendations" : [
5+ " dbaeumer.vscode-eslint" ,
6+ " ms-vscode.extension-test-runner"
7+ ]
8+ }
Original file line number Diff line number Diff line change 1+ // A launch configuration that launches the extension inside a new window
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+ {
6+ "version" : " 0.2.0" ,
7+ "configurations" : [
8+ {
9+ "name" : " Run Extension" ,
10+ "type" : " extensionHost" ,
11+ "request" : " launch" ,
12+ "args" : [
13+ " --extensionDevelopmentPath=${workspaceFolder}"
14+ ]
15+ }
16+ ]
17+ }
You can’t perform that action at this time.
0 commit comments