mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 07:47:23 +01:00
Revert "Port github extension to use esbuild" (#298920)
This commit is contained in:
23
extensions/github/extension.webpack.config.js
Normal file
23
extensions/github/extension.webpack.config.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// @ts-check
|
||||
import withDefaults from '../shared.webpack.config.mjs';
|
||||
|
||||
export default withDefaults({
|
||||
context: import.meta.dirname,
|
||||
entry: {
|
||||
extension: './src/extension.ts'
|
||||
},
|
||||
output: {
|
||||
libraryTarget: 'module',
|
||||
chunkFormat: 'module',
|
||||
},
|
||||
externals: {
|
||||
'vscode': 'module vscode',
|
||||
},
|
||||
experiments: {
|
||||
outputModule: true
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user