Versió 1.0.10: Un montó de FIXos pa que funcione en release
This commit is contained in:
11
extension.js
11
extension.js
@@ -2,6 +2,7 @@ const vscode = require('vscode');
|
||||
const path = require('path');
|
||||
|
||||
function activate(context) {
|
||||
|
||||
const factory = {
|
||||
createDebugAdapterDescriptor(session) {
|
||||
const command = "node";
|
||||
@@ -11,12 +12,12 @@ function activate(context) {
|
||||
}
|
||||
};
|
||||
|
||||
const registration = vscode.debug.registerDebugAdapterDescriptorFactory(
|
||||
"mini-debugger",
|
||||
factory
|
||||
context.subscriptions.push(
|
||||
vscode.debug.registerDebugAdapterDescriptorFactory(
|
||||
"mini-debugger",
|
||||
factory
|
||||
)
|
||||
);
|
||||
|
||||
context.subscriptions.push(registration);
|
||||
}
|
||||
|
||||
function deactivate() {}
|
||||
|
||||
Reference in New Issue
Block a user