## Note: because below configuration of `tsconfig.json `
tsconfig.json ``json`
{ "baseUrl": "./src" }
We should not create folder name like webpack in src/webpack;
1. while we use import { moduleX } from webpack; it will resolve moduleX from src/webpack instead import from node_modulesvitest
2. while use it may broken cause of wrong webpack imported.src/webpack
3. change to src/create-webpack is ok.
1. import { webpack } from 'webpack' should be change to import webpack from 'webpack'import { merge } from 'lodash'
2. should be change to import _ from 'lodash'`