jest.config.js 215 B

1234567891011
  1. // eslint-disable-next-line @typescript-eslint/no-var-requires
  2. const base = require('../../jest.config');
  3. module.exports = {
  4. ...base,
  5. globals: {
  6. 'ts-jest': {
  7. tsconfig: 'tsconfig.json',
  8. },
  9. },
  10. };