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.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
2018-08-21 14:39:52 +00:00
|
|
|
//@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
|
|
|
|
2018-08-21 14:39:52 +00:00
|
|
|
module.exports = withDefaults({
|
2018-08-20 13:23:56 +00:00
|
|
|
context: __dirname,
|
2018-08-16 08:52:08 +00:00
|
|
|
entry: {
|
2018-08-20 10:18:30 +00:00
|
|
|
main: './src/main.ts',
|
|
|
|
['askpass-main']: './src/askpass-main.ts'
|
2018-08-24 14:37:10 +00:00
|
|
|
}
|
2018-08-21 14:39:52 +00:00
|
|
|
});
|