Fixed regression in extension.

This commit is contained in:
Eric Traut 2019-10-20 09:39:36 -07:00
parent 9995ffcef2
commit 3236fe7264

View File

@ -18,7 +18,7 @@ import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind,
import { ProgressReporting } from './progress';
export function activate(context: ExtensionContext) {
const bundlePath = context.asAbsolutePath(path.join('server', 'server.js'));
const bundlePath = context.asAbsolutePath(path.join('server', 'server.bundle.js'));
const nonBundlePath = context.asAbsolutePath(path.join('server', 'server.js'));
const debugOptions = { execArgv: ["--nolazy", "--inspect=6600"] };