Revert "Add webpack config file to vscode-account extension"

This reverts commit 7278da3687.
This commit is contained in:
Rachel Macfarlane
2020-01-16 10:01:59 -08:00
parent 03d46dc17e
commit 235695393d
4 changed files with 35 additions and 31 deletions

View File

@@ -1,23 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
//@ts-check
'use strict';
const withDefaults = require('../shared.webpack.config');
module.exports = withDefaults({
context: __dirname,
resolve: {
mainFields: ['module', 'main']
},
entry: {
extension: './src/extension.ts',
},
externals: {
'keytar': 'commonjs keytar',
},
});