mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-02-12 18:18:55 -05:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'rpc-api',
|
||
|
preset: '../../jest.preset.js',
|
||
|
testEnvironment: 'node',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/apps/rpc-api',
|
||
|
};
|