Versió 1.0.0

This commit is contained in:
2026-04-12 20:21:15 +02:00
parent 9c11af0e08
commit 24957e575c
7 changed files with 58 additions and 17 deletions

View File

@@ -3,7 +3,7 @@ const path = require('path');
function activate(context) {
const factory = {
createDebugAdapterDescriptor(session, executable) {
createDebugAdapterDescriptor(session) {
const command = "node";
const args = [path.join(__dirname, "adapter", "debugAdapter.js")];
@@ -12,7 +12,7 @@ function activate(context) {
};
const registration = vscode.debug.registerDebugAdapterDescriptorFactory(
"myLuaApp",
"mini-debugger",
factory
);