vscode/extensions/shared.webpack.config.js

66 lines
2 KiB
JavaScript
Raw Normal View History

2018-08-17 13:56:57 +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
/** @typedef {import('webpack').Configuration} WebpackConfig **/
2018-08-17 13:56:57 +00:00
'use strict';
const path = require('path');
2018-08-20 13:23:56 +00:00
const merge = require('merge-options');
2018-08-17 13:56:57 +00:00
module.exports = function withDefaults(/**@type WebpackConfig*/extConfig) {
/** @type WebpackConfig */
2018-08-20 13:23:56 +00:00
let defaultConfig = {
2018-08-17 13:56:57 +00: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
resolve: {
mainFields: ['main'], // prefer the main-entry of package.json files
2018-08-20 10:18:30 +00:00
extensions: ['.ts', '.js'] // support ts-files and js-files
2018-08-17 13:56:57 +00:00
},
module: {
2018-08-20 10:18:30 +00:00
rules: [{
test: /\.ts$/,
exclude: /node_modules/,
use: [{
// vscode-nls-dev loader:
// * rewrite nls-calls
loader: 'vscode-nls-dev/lib/webpack-loader'
}, {
// configure TypeScript loader:
// * only transpile because we have a separate compilation pipeline
// * enable sources maps for end-to-end source maps
loader: 'ts-loader',
options: {
transpileOnly: true,
compilerOptions: {
"sourceMap": true,
}
}
}]
}]
2018-08-17 13:56:57 +00:00
},
2018-08-20 13:23:56 +00:00
externals: {
'vscode': 'commonjs vscode', // ignored because it doesn't exist
"vscode-extension-telemetry": 'commonjs vscode-extension-telemetry', // commonly used
"vscode-nls": 'commonjs vscode-nls',
2018-08-20 13:23:56 +00:00
},
2018-08-17 13:56:57 +00:00
output: {
// all output goes into `dist`.
// packaging depends on that and this must always be like it
filename: '[name].js',
2018-08-20 13:23:56 +00:00
path: path.join(extConfig.context, 'dist'),
2018-08-17 13:56:57 +00:00
libraryTarget: "commonjs",
},
// yes, really source maps
devtool: 'source-map'
2018-08-21 08:27:03 +00:00
};
2018-08-20 13:23:56 +00:00
return merge(defaultConfig, extConfig);
2018-08-21 08:27:03 +00:00
};