vscode/extensions/shared.webpack.config.js

73 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-08-17 15:56:57 +02: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
/** @typedef {import('webpack').Configuration} WebpackConfig **/
2018-08-17 15:56:57 +02:00
'use strict';
const path = require('path');
2018-08-20 15:23:56 +02:00
const merge = require('merge-options');
const CopyWebpackPlugin = require('copy-webpack-plugin');
2018-08-17 15:56:57 +02:00
module.exports = function withDefaults(/**@type WebpackConfig*/extConfig) {
/** @type WebpackConfig */
2018-08-20 15:23:56 +02:00
let defaultConfig = {
2018-08-17 15:56:57 +02:00
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
target: 'node', // extensions run in a node context
node: {
__dirname: false // leave the __dirname-behaviour intact
},
2018-08-17 15:56:57 +02:00
resolve: {
mainFields: ['module', 'main'],
2018-08-20 12:18:30 +02:00
extensions: ['.ts', '.js'] // support ts-files and js-files
2018-08-17 15:56:57 +02:00
},
module: {
2018-08-20 12:18:30 +02:00
rules: [{
test: /\.ts$/,
exclude: /node_modules/,
use: [{
// vscode-nls-dev loader:
// * rewrite nls-calls
loader: 'vscode-nls-dev/lib/webpack-loader',
options: {
base: path.join(extConfig.context, 'src')
}
2018-08-20 12:18:30 +02:00
}, {
// configure TypeScript loader:
// * enable sources maps for end-to-end source maps
loader: 'ts-loader',
options: {
compilerOptions: {
"sourceMap": true,
}
}
}]
}]
2018-08-17 15:56:57 +02:00
},
2018-08-20 15:23:56 +02:00
externals: {
'vscode': 'commonjs vscode', // ignored because it doesn't exist
},
2018-08-17 15:56:57 +02:00
output: {
// all output goes into `dist`.
// packaging depends on that and this must always be like it
filename: '[name].js',
2018-08-20 15:23:56 +02:00
path: path.join(extConfig.context, 'dist'),
2018-08-17 15:56:57 +02:00
libraryTarget: "commonjs",
},
// yes, really source maps
devtool: 'source-map',
plugins: [
new CopyWebpackPlugin([
{ from: './out/**/*', to: '.', ignore: ['*.js', '*.js.map'], flatten: true }
])
],
2018-08-21 10:27:03 +02:00
};
2018-08-20 15:23:56 +02:00
return merge(defaultConfig, extConfig);
2018-08-21 10:27:03 +02:00
};