mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
14 lines
363 B
JavaScript
14 lines
363 B
JavaScript
|
/** @type {import('jest').Config} */
|
||
|
const config = {
|
||
|
transform: {},
|
||
|
coveragePathIgnorePatterns: ['/node_modules/', '/src/__mocks__/'],
|
||
|
coverageReporters: ['text-summary', 'lcov'],
|
||
|
coverageProvider: 'v8',
|
||
|
roots: ['./lib'],
|
||
|
moduleNameMapper: {
|
||
|
'^(chalk|inquirer)$': '<rootDir>/../../shared/lib/esm/module-proxy.js',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|