webpack/test/watchCases/plugins/watch-ignore-plugin/webpack.config.js

6 lines
138 B
JavaScript

var webpack = require("../../../../");
module.exports = {
plugins: [new webpack.WatchIgnorePlugin({ paths: [/file\.js$/, /foo$/] })]
};