Updates for Webpack 5 support + HMR during dev

This commit is contained in:
Elio Struyf
2021-12-16 13:31:30 +01:00
parent 41cbcc4c46
commit 2d85b0a554
35 changed files with 4863 additions and 6894 deletions

View File

@@ -0,0 +1,66 @@
//@ts-check
'use strict';
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const config = [
{
name: 'dashboard',
target: 'web',
entry: './src/dashboardWebView/index.tsx',
output: {
filename: 'dashboardWebView.js',
path: path.resolve(__dirname, '../dist')
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.js', '.tsx', '.jsx'],
fallback: { "path": require.resolve("path-browserify") }
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: [{
loader: 'ts-loader'
}]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader', 'postcss-loader']
}
]
},
performance: {
maxEntrypointSize: 400000,
maxAssetSize: 400000
},
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: "dashboard.html",
openAnalyzer: false
})
],
devServer: {
compress: true,
port: 9000,
hot: true,
allowedHosts: "all",
headers: {
"Access-Control-Allow-Origin": "*",
}
}
}
];
module.exports = (env, argv) => {
for (const configItem of config) {
configItem.mode = argv.mode;
}
return config;
};

134
webpack/extension.config.js Normal file
View File

@@ -0,0 +1,134 @@
//@ts-check
'use strict';
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const config = [
{
name: 'extension',
target: 'node',
entry: './src/extension.ts',
output: {
path: path.resolve(__dirname, '../dist'),
libraryTarget: 'commonjs2',
filename: 'extension.js',
devtoolModuleFilenameTemplate: '../[resource-path]'
},
devtool: 'nosources-source-map',
externals: {
vscode: 'commonjs vscode'
},
resolve: {
extensions: ['.ts', '.js']
},
module: {
rules: [{
test: /\.ts$/,
exclude: /node_modules/,
use: [{
loader: 'ts-loader'
}]
},
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
}]
},
performance: {
maxEntrypointSize: 400000,
maxAssetSize: 400000
},
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /node_modules/,
chunks: 'initial',
filename: 'vendors.[contenthash].js',
priority: 1,
maxInitialRequests: 2, // create only one vendor file
minChunks: 1,
}
}
}
},
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: "extension.html",
openAnalyzer: false
})
]
},
{
name: 'panelWebView',
target: 'web',
entry: './src/panelWebView/index.tsx',
output: {
filename: 'panelWebView.js',
path: path.resolve(__dirname, '../dist')
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.js', '.tsx', '.jsx']
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: [{
loader: 'ts-loader'
}]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
}
]
},
performance: {
maxEntrypointSize: 400000,
maxAssetSize: 400000
},
// optimization: {
// splitChunks: {
// cacheGroups: {
// vendors: {
// test: /node_modules/,
// chunks: 'initial',
// filename: 'vendors.[contenthash].js',
// priority: 1,
// maxInitialRequests: 2, // create only one vendor file
// minChunks: 1,
// }
// }
// }
// },
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: "viewpanel.html",
openAnalyzer: false
})
]
}
];
module.exports = (env, argv) => {
for (const configItem of config) {
configItem.mode = argv.mode;
}
return config;
};