mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 20:57:12 +00:00
* Upgrade appinsights * Env, global updates before starting shared process * Disable console logging from appinsights Fixes #55417 * Move workaround to helper
21 lines
716 B
JavaScript
21 lines
716 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');
|
|
|
|
// Avoid Monkey Patches from Application Insights
|
|
bootstrap.avoidMonkeyPatchFromAppInsights();
|
|
|
|
// Enable portable support
|
|
bootstrap.configurePortable();
|
|
|
|
// Enable ASAR support
|
|
bootstrap.enableASARSupport();
|
|
|
|
// Load CLI through AMD loader
|
|
require('./bootstrap-amd').load('vs/code/node/cli'); |