chore: add type to webpack config file (#12072)

This commit is contained in:
Percy Ma
2024-12-27 08:17:46 +08:00
committed by GitHub
parent 0b7e572df0
commit d79dfd0382
4 changed files with 4 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.common');
module.exports = merge(common, {
module.exports = merge(common, /** @type { import('webpack').Configuration } */ {
mode: 'development',
// devtool: 'eval-source-map',
});