Expected:
When I build with webpack, all my JS files get bundled except for the files in the ./src/Portfolio directory as per my Webpack.config.js settings.
Actual:
Webpack bundles all the files including the ones in the directory despite the settings and other variations i have provided within webpack.config.js.
Code:
Webpack.config.js
const path = require('path'); module.exports = { entry: './src/index.js', devtool: 'source-map', mode: 'development', module: { rules: [ { test: /\.js$/, exclude: [ path.resolve(__dirname, './src/Portfolio/') ] } ] }, output: { filename: 'main.js', path: path.resolve(__dirname, 'dist') } }; Output:
How can i successfully exclude the ./src/Portfolio directory and its contents?

path.resolve(__dirname, './src/Portfolio/*')?