1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5// @ts-check 6import withDefaults from '../shared.webpack.config.mjs'; 7 8export default withDefaults({ 9 context: import.meta.dirname, 10 entry: { 11 main: './src/main.ts', 12 ['askpass-main']: './src/askpass-main.ts', 13 ['git-editor-main']: './src/git-editor-main.ts' 14 } 15}); 16 17