chore(vscode): add launch config for local backend (KILO_API_URL=localhost:3000)

This commit is contained in:
Igor Šćekić
2026-02-11 14:48:07 +01:00
parent 1e3778e82e
commit 72840ae7d8
+11
View File
@@ -12,6 +12,17 @@
"args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Run Extension (Local Backend)",
"type": "extensionHost",
"request": "launch",
"args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"env": {
"KILO_API_URL": "http://localhost:3000"
}
}
]
}