mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
71282c3d52
* forwarding: add built-in tunnel forwarding extension - Support public/private ports, which accounts for most of the work in the CLI. Previously ports were only privat. - Make the extension built-in. Ported from the remote-containers extension with some tweaks for privacy and durability. - This also removes the opt-in flag, by not reimplementing it 😛 Fixes https://github.com/microsoft/vscode/issues/189677 Fixes https://github.com/microsoft/vscode/issues/189678 * fixup! comments --------- Co-authored-by: Raymond Zhao <7199958+rzhao271@users.noreply.github.com>
20 lines
594 B
JavaScript
20 lines
594 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 withDefaults = require('../shared.webpack.config');
|
|
|
|
module.exports = withDefaults({
|
|
context: __dirname,
|
|
entry: {
|
|
extension: './src/extension.ts',
|
|
},
|
|
resolve: {
|
|
mainFields: ['module', 'main']
|
|
}
|
|
});
|