16 lines
694 B
TypeScript
16 lines
694 B
TypeScript
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
import * as httpRequest from 'request-light';
|
||
|
import * as vscode from 'vscode';
|
||
|
import { addJSONProviders } from './features/jsonContributions';
|
||
|
|
||
|
export async function activate(context: vscode.ExtensionContext): Promise<void> {
|
||
|
context.subscriptions.push(addJSONProviders(httpRequest.xhr, false));
|
||
|
}
|
||
|
|
||
|
export function deactivate(): void {
|
||
|
}
|