run webpack in code-dev

This commit is contained in:
Martin Aeschlimann
2020-05-26 18:15:01 +02:00
parent f9bb157b09
commit d1a3e6ede6
7 changed files with 68 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { ExtensionContext, window } from 'vscode';
//import { startClient } from '../cssClient';
// this method is called when vs code is activated
export function activate(_context: ExtensionContext) {
window.showInformationMessage('cssClientBrowserMain.ts running');
//startClient(context, {});
}