mirror of https://github.com/webpack/webpack.git
add modulePathIgnorePatterns
elsewise haste map generation takes forever with many files in folder
This commit is contained in:
parent
70d647b8d4
commit
cc0148b023
15
package.json
15
package.json
|
@ -130,12 +130,21 @@
|
||||||
"<rootDir>/test/*.unittest.js"
|
"<rootDir>/test/*.unittest.js"
|
||||||
],
|
],
|
||||||
"watchPathIgnorePatterns": [
|
"watchPathIgnorePatterns": [
|
||||||
|
"<rootDir>/node_modules/webpack/node_modules/",
|
||||||
"<rootDir>/test/js/",
|
"<rootDir>/test/js/",
|
||||||
"<rootDir>/test/browsertest/js/",
|
"<rootDir>/test/browsertest/js/",
|
||||||
"<rootDir>/test/fixtures/temp-cache-fixture/",
|
"<rootDir>/test/fixtures/temp-cache-fixture/",
|
||||||
"<rootDir>/benchmark/js/",
|
"<rootDir>/benchmark/",
|
||||||
"<rootDir>/benchmark/fixtures/",
|
"<rootDir>/examples/*/dist",
|
||||||
"<rootDir>/examples/",
|
"<rootDir>/coverage/"
|
||||||
|
],
|
||||||
|
"modulePathIgnorePatterns": [
|
||||||
|
"<rootDir>/node_modules/webpack/node_modules/",
|
||||||
|
"<rootDir>/test/js/",
|
||||||
|
"<rootDir>/test/browsertest/js/",
|
||||||
|
"<rootDir>/test/fixtures/temp-cache-fixture/",
|
||||||
|
"<rootDir>/benchmark/",
|
||||||
|
"<rootDir>/examples/*/dist",
|
||||||
"<rootDir>/coverage/"
|
"<rootDir>/coverage/"
|
||||||
],
|
],
|
||||||
"transformIgnorePatterns": [
|
"transformIgnorePatterns": [
|
||||||
|
|
Loading…
Reference in New Issue