15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import { startIDEServer } from './ide-server';
|
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
|
startIDEServer(context);
|
|
}
|
|
|
|
export function deactivate() {}
|