vscode/extensions/git/extension.webpack.config.js

20 lines
630 B
JavaScript
Raw Normal View History

2018-08-07 15:07:01 +00:00
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
//@ts-check
2018-08-07 15:07:01 +00:00
'use strict';
2018-08-20 13:23:56 +00:00
const withDefaults = require('../shared.webpack.config');
2018-08-07 15:07:01 +00:00
module.exports = withDefaults({
2018-08-20 13:23:56 +00:00
context: __dirname,
entry: {
2018-08-20 10:18:30 +00:00
main: './src/main.ts',
['askpass-main']: './src/askpass-main.ts',
['git-editor-main']: './src/git-editor-main.ts'
}
});