File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments