We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cfed29 commit f2640e2Copy full SHA for f2640e2
jest.config.ts
@@ -28,9 +28,10 @@ const config = {
28
coverageDirectory: 'coverage',
29
30
// An array of regexp pattern strings used to skip coverage collection
31
- // coveragePathIgnorePatterns: [
32
- // "/node_modules/"
33
- // ],
+ coveragePathIgnorePatterns: [
+ '/node_modules/',
+ 'config/tests',
34
+ ],
35
36
// Indicates which provider should be used to instrument code for coverage
37
// coverageProvider: "babel",
tsconfig.json
@@ -17,7 +17,7 @@
17
"typeRoots": [
18
"./node_modules/@types",
19
"./src/@types",
20
- // "./node_modules/vite-plugin-svgr/client"
+ "./node_modules/vite-plugin-svgr/client"
21
],
22
"jsx": "react-jsx",
23
"baseUrl": ".",
0 commit comments