mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 05:37:45 +00:00
18 lines
620 B
JavaScript
18 lines
620 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
//@ts-check
|
|
'use strict';
|
|
|
|
const bootstrap = require('./bootstrap');
|
|
|
|
// Enable portable support
|
|
bootstrap.configurePortable();
|
|
|
|
// Enable ASAR support
|
|
bootstrap.enableASARSupport();
|
|
|
|
// Load CLI through AMD loader
|
|
require('./bootstrap-amd').load('vs/code/node/cli'); |