Path: blob/main/extensions/git/extension.webpack.config.js
5236 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/4// @ts-check5import withDefaults from '../shared.webpack.config.mjs';67export default withDefaults({8context: import.meta.dirname,9entry: {10main: './src/main.ts',11['askpass-main']: './src/askpass-main.ts',12['git-editor-main']: './src/git-editor-main.ts'13}14});1516export const StripOutSourceMaps = ['dist/askpass-main.js'];171819