mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 21:47:38 +00:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
|
|
export default {
|
|
displayName: 'eslint-rules',
|
|
silent: false,
|
|
preset: '../../jest.preset.js',
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../coverage/tools/eslint-rules',
|
|
};
|