indexnow-submitter
Version:
An IndexNow Submission module with caching and analytics
17 lines • 407 B
JavaScript
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
testMatch: ['**/test/**/*.test.(ts|js)'],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
moduleNameMapper: {
"^axios$": "axios/dist/node/axios.cjs"
}
};