mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-19 22:28:35 +08:00
* Revert "fix github extension bundling (#247314)" This reverts commit 0cffb673f50e4f9258b4a509e63e0abcb07ef786. * Revert "migrate github-extension to ESM" This reverts commit 493874c390d147f9da7bde871e381bf594b784bf. * Add missing JS file
18 lines
544 B
JavaScript
18 lines
544 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'
|
|
}
|
|
});
|