Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mololab
GitHub Repository: mololab/json-translator
Path: blob/master/jest.config.js
175 views
1
module.exports = {
2
transform: {
3
'^.+\\.ts?$': 'ts-jest',
4
},
5
moduleNameMapper: {
6
'fs/promises': '<rootDir>/node_modules/fs-extra/lib/fs',
7
'^axios$': require.resolve('axios'),
8
},
9
};
10
11