Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/ipynb/src/ipynbMain.node.ts
3292 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import * as vscode from 'vscode';
7
import * as main from './ipynbMain';
8
import { NotebookSerializer } from './notebookSerializer.node';
9
10
export function activate(context: vscode.ExtensionContext) {
11
return main.activate(context, new NotebookSerializer(context));
12
}
13
14
export function deactivate() {
15
return main.deactivate();
16
}
17
18