mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-29 10:13:05 +03:00
11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'eslint-rules',
|
||
|
preset: '../../jest.preset.js',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/tools/eslint-rules',
|
||
|
};
|