32 lines
745 B
JavaScript
32 lines
745 B
JavaScript
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
|
|
const WooCommerceDependencyExtractionWebpackPlugin = require( '@woocommerce/dependency-extraction-webpack-plugin' );
|
|
|
|
module.exports = {
|
|
...defaultConfig,
|
|
entry: {
|
|
...defaultConfig.entry,
|
|
'wc-docs': './client/index.tsx',
|
|
},
|
|
module: {
|
|
...defaultConfig.module,
|
|
rules: [
|
|
...defaultConfig.module.rules,
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: [ '.js', '.jsx', '.tsx', '.ts' ],
|
|
},
|
|
plugins: [
|
|
...defaultConfig.plugins.filter(
|
|
( plugin ) =>
|
|
plugin.constructor.name !== 'DependencyExtractionWebpackPlugin'
|
|
),
|
|
new WooCommerceDependencyExtractionWebpackPlugin(),
|
|
],
|
|
};
|