mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
1e0fa95493
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8162 GitOrigin-RevId: 7d008762530bb07439a024638fc1221aee677873
17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'nx-internal-plugin',
|
|
preset: '../../../jest.preset.js',
|
|
globals: {},
|
|
transform: {
|
|
'^.+\\.[tj]s$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
],
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../../coverage/libs/nx/internal-plugin',
|
|
};
|