mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
/* eslint-ignore */
|
|
|
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/src', '<rootDir>/test'],
|
|
globals: {
|
|
'ts-jest': {
|
|
isolatedModules: true,
|
|
useESM: true
|
|
}
|
|
},
|
|
setupFilesAfterEnv: ['<rootDir>/test/setup.ts'],
|
|
};
|