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

28 lines
799 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
module.exports = withDefaults({
context: path.join(__dirname, 'client'),
entry: {
extension: './src/jsonMain.ts',
},
output: {
filename: 'jsonMain.js',
path: path.join(__dirname, 'client', 'dist')
},
plugins: [
2019-03-27 10:31:57 +00:00
new webpack.IgnorePlugin(/vertx/) // request-light dependency
]
2018-08-25 18:48:56 +00:00
});