複数の反応コンポーネントのライブラリがあり、ライブラリをツリーシェイキング可能にして、次のようなコンポーネントをインポートしたときに
import { Checkbox } from 'my-react-components'
バンドル全体をインポートしません。
私のindex.jsは次のようになります
export { default as Button } from './components/Button'
export { default as Checkbox } from './components/Checkbox'
export { default as FlexView } from './components/FlexView'
export { default as Radio } from './components/Radio'
export { default as Select } from './components/Select'
export { default as TextInput } from './components/TextInput'
export { default as Toggle } from './components/Toggle'
そして、webpackを使用してバンドルします
module.exports = {
mode: 'production',
entry: './src/index.ts',
output: {
path: path.resolve('./lib'),
filename: 'react-components.js',
libraryTarget: 'commonjs2',
},
// loaders and stuff...
// terser-webpack-plugin...
externals: {
// don't include react in the bundle
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
},
optimization: {
splitChunks: false,
sideEffects: false,
},
}
そしてもちろん、私のbabel設定には
['@babel/preset-env', {
modules: false,
}]
このセットアップでは、1 つのコンポーネントのみをインポートすると、バンドル全体が含まれます (インポートするときにも webpack を使用しています)。これを防ぐにはどうすればよいですか?