vscode/extensions/json-language-features/extension.webpack.config.js

28 lines
865 B
JavaScript
Raw Normal View History

2018-08-25 18:48:56 +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
'use strict';
const withDefaults = require('../shared.webpack.config');
const path = require('path');
var webpack = require('webpack');
2018-08-25 18:48:56 +00:00
const config = withDefaults({
2018-08-25 18:48:56 +00:00
context: path.join(__dirname, 'client'),
entry: {
extension: './src/jsonMain.ts',
},
output: {
filename: 'jsonMain.js',
path: path.join(__dirname, 'client', 'dist')
}
2018-08-25 18:48:56 +00:00
});
// add plugin, don't replace inherited
config.plugins.push(new webpack.IgnorePlugin(/vertx/)); // request-light dependency
module.exports = config;