Files
nostr-profile-manager/jest.config.js
2023-03-06 16:10:41 +00:00

11 lines
200 B
JavaScript

module.exports = {
roots: ['<rootDir>/src'],
testMatch: [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest"
},
}