Files
vscode-extension-samples/lsp-user-input-sample/server/webpack.config.js

23 lines
671 B
JavaScript
Raw Permalink Normal View History

2019-11-15 19:19:44 +01: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');
module.exports = withDefaults({
context: path.join(__dirname),
entry: {
2021-08-04 17:00:45 +02:00
extension: './src/sampleServer.ts',
2019-11-15 19:19:44 +01:00
},
output: {
2021-08-04 17:00:45 +02:00
filename: 'sampleServer.js',
2019-11-15 19:19:44 +01:00
path: path.join(__dirname, 'out')
}
});