We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1684b commit 365025dCopy full SHA for 365025d
README.md
@@ -61,7 +61,13 @@ module.exports = {
61
}
62
]
63
},
64
- plugins: [new ForkTsCheckerWebpackPlugin()]
+ plugins: [new ForkTsCheckerWebpackPlugin()],
65
+ watchOptions: {
66
+ // for some systems, watching many files can result in a lot of CPU or memory usage
67
+ // https://webpack.js.org/configuration/watch/#watchoptionsignored
68
+ // don't use this pattern, if you have a monorepo with linked packages
69
+ ignored: /node_modules/,
70
+ },
71
};
72
```
73
0 commit comments