SponsorBlock/jest.config.js
Michael C 2665327729
update dependencies & bump minimum node version (#1329)
- bump all dependences
- add github-actions reporter to jest
- convert (most) webpack configs to ESM
  - manifest.cjs cannot be converted since there is no native .json import until node 17
2022-05-24 21:14:36 -04:00

9 lines
153 B
JavaScript

module.exports = {
"roots": [
"test"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"reporters": ["github-actions"]
};