diff --git a/jest.config.js b/jest.config.js index 8d608e8..83e1504 100644 --- a/jest.config.js +++ b/jest.config.js @@ -22,7 +22,7 @@ module.exports = { collectCoverage: true, // An array of glob patterns indicating a set of files for which coverage information should be collected - collectCoverageFrom: ['./src/**/*.ts', '!./src/logging-utils.ts'], + collectCoverageFrom: ['./src/**/*.ts'], // The directory where Jest should output its coverage files coverageDirectory: 'coverage', diff --git a/tsconfig.json b/tsconfig.json index eb5ceb7..23c8ceb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,9 +9,6 @@ "noEmit": true, "noErrorTruncation": true, "noUncheckedIndexedAccess": true, - "paths": { - "@metamask/utils/node": ["./node_modules/@metamask/utils/dist/types/node"] - }, "strict": true, "target": "es2020" },