UNPKG

608 BJavaScriptView Raw
1"use strict";
2
3module.exports = {
4 tests: [
5 "**/*.{test,spec,stories}.*",
6 "**/test{s,}/**",
7 ],
8 tooling: [
9 "config/**",
10 "script{,s}/**", // contains usually npm scripts
11 "tool{,s}/**", // often used for other scripts
12 ],
13 withSideEffects: [
14 "**/*.css",
15 "**/*.less",
16 "**/*.scss",
17 "**/*.sass",
18 "**/*register",
19 "**/*extend", // mostly because of @testing-library/jest-dom/extend-expect
20 ],
21 typescript: [
22 "*.ts",
23 "*.tsx",
24 ],
25 react: [
26 "*.jsx",
27 "*.tsx",
28 ]
29};