Skip to content

Commit f1a453d

Browse files
author
Kumar Harsh
committed
fix(client): remove unneeded debug options
1 parent 6f73919 commit f1a453d

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/client/extension.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,10 @@ export function activate(context: ExtensionContext) {
7171
const serverModule = context.asAbsolutePath(
7272
path.join('out', 'server', 'server.js'),
7373
);
74-
// The debug options for the server
75-
const debugOptions = { execArgv: ['--nolazy', '--debug=6004'] };
7674

77-
// If the extension is launched in debug mode then the debug server options are used
78-
// Otherwise the run options are used
7975
const serverOptions: ServerOptions = {
80-
run: { module: serverModule, transport: TransportKind.ipc },
81-
debug: {
82-
module: serverModule,
83-
transport: TransportKind.ipc,
84-
options: debugOptions,
85-
},
76+
module: serverModule,
77+
transport: TransportKind.ipc,
8678
};
8779

8880
// Options to control the language client

0 commit comments

Comments
 (0)